-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
92 lines (92 loc) · 2.26 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
retro: 'Retro',
poppins: 'Poppins',
poppinsBold: 'PoppinsBold',
},
colors: {
primary: '#272B52',
onPrimary: '#A3AA10',
primaryContainer: '#E9DEA6',
onPrimaryContainer: '#DC8F1A',
onPrimaryContainerRed: '#A33233',
success: '#B6F2D7',
onSuccess: '#10613D',
successContainer: '#188C58',
onSuccessContainer: '#DCFAED',
danger: '#F2B8B5',
onDanger: '#601410',
dangerContainer: '#8C1D18',
onDangerContainer: '#F9DEDC',
background: '#272B52',
onBackground: '#E0CDF2',
surface: '#DC8F1A',
onSurface: '#E9DEA6',
red: {
light: '#CA5355',
normal: '#A33233',
dark: '#6D2223',
},
blue: {
light: '#4F579E',
normal: '#272B52',
dark: '#242A2B',
},
pink: {
light: '#EFABD6',
normal: '#E975BE',
dark: '#C04994',
},
tosca: {
light: '#00E5AC',
normal: '#6DB8C2',
dark: '#2F7A84',
},
orange: {
light: '#EABB76',
normal: '#FEB048',
dark: '#F36A22',
},
purple: {
light: '#E0CDF2',
normal: '#BB83F2',
dark: '#8C3FD9',
},
cream: {
light: '#F4EFD3',
normal: '#E9DEA6',
dark: '#A39B74',
},
green: {
light: '#C7CC70',
normal: '#A3AA10',
dark: '#71770B',
},
},
fontSize: {
'display-large': '57px',
'display-medium': '45px',
'display-small': '36px',
'headline-large': '32px',
'headline-medium': '28px',
'headline-small': '24px',
'title-large': '22px',
'title-medium': '16px',
'title-small': '14px',
'label-large': '14px',
'label-medium': '12px',
'label-small': '11px',
'body-large': '16px',
'body-medium': '14px',
'body-small': '12px',
'p-md': '16px',
'p-sm': '12px',
},
},
},
plugins: [],
}