-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
67 lines (66 loc) · 1.5 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
screens: {
tablet: '640px',
desktop: '1024px',
},
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
colors: {
transparent: 'transparent',
white: {
100: '#FFFFFF',
72: '#FFFFFFB8',
40: '#FFFFFF66',
},
grayscale: {
800: '#1A1A1A',
700: '#3B3B3B',
600: '#656565',
500: '#757575',
400: '#A1A1A1',
300: '#CDCDCD',
200: '#E6E6E6',
100: '#F1F1F1'
},
primary: {
100: '#2648A4',
50: '#2C5DE5',
20: '#91ADFA',
10: '#BFD0FD',
5: '#D7E1FE',
0: '#EEF3FF',
},
support: {
success: {
100: '#086343',
50: '#008556',
5: '#D6F3E2',
},
warning: {
100: '#D7A900',
50: '#FDDE68',
5: '#FEF3CA',
},
alert: {
100: '#9F1B1F',
50: '#DE1C22',
5: '#FFD6D7',
},
}
},
},
},
plugins: [],
}
export default config