-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
60 lines (59 loc) · 1.83 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
import type { Config } from 'tailwindcss';
import defaultTheme from 'tailwindcss/defaultTheme';
export default <Partial<Config>>{
theme: {
extend: {
fontFamily: {
sans: [
'DM Sans',
'DM Sans fallback',
...defaultTheme.fontFamily.sans,
],
},
colors: {
arrired: {
50: '#FFBFD2',
100: '#FF85A9',
200: '#FB5687',
300: '#F53A72',
400: '#E7235D',
500: '#DD0A49',
DEFAULT: '#DD0A49',
600: '#C31147',
700: '#A11C44',
800: '#662035',
900: '#3A111E',
950: '#1A0B0F',
},
arrigray: {
50: '#E5E3EE',
100: '#DAD7E8',
200: '#C2BDD4',
300: '#A8A3BA',
400: '#A8A3BA',
500: '#918DA5',
DEFAULT: '#918DA5',
600: '#716D83',
700: '#595666',
800: '#44414F',
// 900: "#292731",
900: '#131217',
950: '#131217',
},
green: {
50: '#EFFDF5',
100: '#D9FBE8',
200: '#B3F5D1',
300: '#75EDAE',
400: '#00DC82',
500: '#00C16A',
600: '#00A155',
700: '#007F45',
800: '#016538',
900: '#0A5331',
950: '#052e16',
},
},
},
},
};