-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
79 lines (78 loc) · 1.8 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
68
69
70
71
72
73
74
75
76
77
78
79
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: {
colors: {
'col-identity-1': '#FFCC00', // yellow
'col-identity-2': '#0E9749', // green
'primary': {
100: '#CCFACD',
200: '#9CF3AA',
300: '#66DF82',
400: '#3EC068',
500: '#0E9749',
600: '#0A8049',
700: '#086C48',
800: '#045841',
900: '#02483D',
},
'neutral': {
100: '#F3F3F3',
200: '#E7E7E7',
300: '#B7B7B7',
400: '#707070',
500: '#121212',
600: '#0F0D0E',
700: '#0B0A08',
800: '#0A0607',
900: '#080405',
},
'secondary': {
100: '#FFF9CC',
200: '#FFF099',
300: '#FFE668',
400: '#FFDC40',
500: '#FFCD00',
600: '#DAAA00',
700: '#B68B00',
800: '#936D00',
900: '#7B5701',
},
'others1': {
100: '#D1EAFF',
200: '#9ED5FD',
300: '#6FB6F8',
400: '#4A9AF1',
500: '#116FE7',
600: '#0C54C6',
700: '#0A3FA8',
800: '#042D87',
900: '#032070',
},
'others2': {
100: '#FEDCD2',
200: '#FCB4A7',
300: '#F3827A',
400: '#E9565C',
500: '#D9253D',
600: '#BC1A3E',
700: '#9E1240',
800: '#7F0B3A',
900: '#690738',
},
},
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}
export default config