-
Notifications
You must be signed in to change notification settings - Fork 9
/
tailwind.config.js
111 lines (110 loc) · 2.45 KB
/
tailwind.config.js
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
import typography from '@tailwindcss/typography'
export default {
plugins: [
typography(),
require('daisyui'),
],
daisyui: {
themes: [
{
light: {
...require('daisyui/src/theming/themes')['light'],
primary: '#247BA0',
secondary: '#F49FBC',
accent: '#35BFA4',
},
},
'dark',
],
},
theme: {
extend: {
colors: {
text: {
50: '#12070f',
100: '#240f1d',
200: '#491d3a',
300: '#6d2c57',
400: '#923a75',
500: '#b64992',
600: '#c56da8',
700: '#d392bd',
800: '#e2b6d3',
900: '#f0dbe9',
950: '#f8edf4',
DEFAULT: '#0f060c',
},
bgbright: {
50: '#0d0d0d',
100: '#1a1a1a',
200: '#333333',
300: '#4d4d4d',
400: '#666666',
500: '#808080',
600: '#999999',
700: '#b3b3b3',
800: '#cccccc',
900: '#e6e6e6',
950: '#f2f2f2',
DEFAULT: '#FCFCFC',
},
bgdark: {
50: '#0d0d0d',
100: '#1a1a1a',
200: '#333333',
300: '#4d4d4d',
400: '#666666',
500: '#808080',
600: '#999999',
700: '#b3b3b3',
800: '#cccccc',
900: '#e6e6e6',
950: '#f2f2f2',
DEFAULT: '#02111B',
},
primary: {
50: '#051015',
100: '#09202a',
200: '#134053',
300: '#1c607d',
400: '#2680a6',
500: '#2fa0d0',
600: '#59b3d9',
700: '#82c6e3',
800: '#acd9ec',
900: '#d5ecf6',
950: '#eaf5fa',
DEFAULT: '#247BA0',
},
secondary: {
50: '#1a1200',
100: '#332500',
200: '#664900',
300: '#996e00',
400: '#cc9200',
500: '#ffb700',
600: '#ffc533',
700: '#ffd466',
800: '#ffe299',
900: '#fff1cc',
950: '#fff8e5',
DEFAULT: '#F49FBC',
},
accent: {
50: '#051411',
100: '#0b2822',
200: '#165044',
300: '#217867',
400: '#2ca089',
500: '#37c8ab',
600: '#5fd3bc',
700: '#87decd',
800: '#afe9dd',
900: '#d7f4ee',
950: '#ebfaf7',
DEFAULT: '#35BFA4',
},
},
},
},
}