-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.ts
51 lines (50 loc) · 1.06 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
import colors from 'tailwindcss/colors'
export default {
content: [
'./src/**/*.{js,scss,css,ts,tsx,jsx}',
'./i18n/**/*.{js,scss,css,ts,tsx,jsx}',
'./docs/**/*.{js,scss,css,ts,tsx,jsx}',
],
theme: {
colors: {
...colors,
// https://uicolors.app/create
blue: {
50: '#eef8ff',
100: '#d9f0ff',
200: '#bce5ff',
300: '#8ed5ff',
400: '#59bcff',
500: '#37a0ff',
600: '#1b7ff5',
700: '#1468e1',
800: '#1753b6',
900: '#19488f',
},
red: {
50: '#fff0f0',
100: '#ffdddd',
200: '#ffc0c0',
300: '#ff9494',
400: '#ff5757',
500: '#ff2323',
600: '#ff0000',
700: '#d70000',
800: '#b10303',
900: '#920a0a',
},
yellow: {
50: '#fffbeb',
100: '#fef3c7',
200: '#fee789',
300: '#fdd54c',
400: '#fcc123',
500: '#ea9708',
600: '#da7805',
700: '#b55408',
800: '#93410d',
900: '#79350e',
},
},
},
}