-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-tailwind.html
79 lines (79 loc) · 2.3 KB
/
test-tailwind.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'blue': {
DEFAULT: '#353887',
50: '#9C9ED8',
100: '#8D90D2',
200: '#7073C7',
300: '#5256BB',
400: '#4144A4',
500: '#353887',
600: '#25275F',
700: '#151736',
800: '#06060E',
900: '#000000',
950: '#000000'
},
'red': {
DEFAULT: '#CF2E39',
50: '#FEFBFB',
100: '#F9E4E6',
200: '#EFB6BA',
300: '#E5898F',
400: '#DA5B63',
500: '#CF2E39',
600: '#A9262F',
700: '#841D24',
800: '#5E151A',
900: '#390D10',
950: '#26080A'
},
'white': {
DEFAULT: '#E8E8E8',
50: '#FFFFFF',
100: '#FCFCFC',
200: '#F7F7F7',
300: '#F2F2F2',
400: '#EDEDED',
500: '#E8E8E8',
600: '#CCCCCC',
700: '#B0B0B0',
800: '#949494',
900: '#787878',
950: '#6A6A6A'
},
'codgray': {
DEFAULT: '#0F0F0F',
50: '#6B6B6B',
100: '#616161',
200: '#4D4D4D',
300: '#383838',
400: '#242424',
500: '#0F0F0F',
600: '#0A0A0A',
700: '#050505',
800: '#000000',
900: '#000000',
950: '#000000'
},
}
}
}
}
</script>
</head>
<body>
<h1 class="text-2xl text-codgray-400 font-bold underline">
Hello world!
</h1>
</body>
</html>