forked from m-abdelwahab/feedback-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
104 lines (102 loc) · 2.68 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
/** @type {import('tailwindcss').Config} */
/**
Radix Colors
| Step | Use Case |
| ---- | --------------------------------------- |
| 100 | App background |
| 200 | Subtle background |
| 300 | UI element background |
| 400 | Hovered UI element background |
| 500 | Active / Selected UI element background |
| 600 | Subtle borders and separators |
| 700 | UI element border and focus rings |
| 800 | Hovered UI element border |
| 900 | Solid backgrounds |
| 1000 | Hovered solid backgrounds |
| 1100 | Low-contrast text |
| 1200 | High-contrast text |
*/
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class',
theme: {
extend: {
colors: {
gray: {
100: '#fdfcfd',
200: '#f9f8f9',
300: '#f4f2f4',
400: '#eeedef',
500: '#e9e8ea',
600: '#e4e2e4',
700: '#dcdbdd',
700: '#c8c7cb',
900: '#908e96',
1000: '#86848d',
1100: '#6f6e77',
1200: '#1a1523',
},
violet: {
100: '#fdfcfe',
200: '#fbfaff',
300: '#f5f2ff',
400: '#ede9fe',
500: '#e4defc',
600: '#d7cff9',
700: '#c4b8f3',
800: '#aa99ec',
900: '#6e56cf',
1000: '#644fc1',
1100: '#5746af',
1200: '#20134b',
},
green: {
100: '#fbfefc',
200: '#f2fcf5',
300: '#e9f9ee',
400: '#ddf3e4',
500: '#ccebd7',
600: '#b4dfc4',
700: '#92ceac',
800: '#5bb98c',
900: '#30a46c',
1000: '#299764',
1100: '#18794e',
1200: '#153226',
},
red: {
100: '#fffcfc',
200: '#fff8f8',
300: '#ffefef',
400: '#ffe5e5',
500: '#fdd8d8',
600: '#f9c6c6',
700: '#f3aeaf',
800: '#eb9091',
900: '#e5484d',
1000: '#dc3d43',
1100: '#cd2b31',
1200: '#381316',
},
yellow: {
100: '#fdfdf9',
200: '#fffce8',
300: '#fffbd1',
400: '#fff8bb',
500: '#fef2a4',
600: '#f9e68c',
700: '#efd36c',
700: '#ebbc00',
900: '#f5d90a',
1000: '#f7ce00',
1100: '#946800',
1200: '#35290f',
},
},
},
},
plugins: [require('@tailwindcss/forms')],
};