-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
94 lines (94 loc) · 2.38 KB
/
tailwind.config.js
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
93
94
module.exports = {
plugins: [],
tailwindConfig: './styles/tailwind.config.js',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
fontSize: {
'3xs': '0.2rem',
'2xs': '0.4em',
xs: '0.8rem',
sm: [
'1.2rem',
{
fontWeight: '400',
},
],
ms: '1.4rem',
mm: ['1.4rem', { fontWeight: '500' }],
base: [
'1.6rem',
{
fontWeight: '500',
},
],
sl: ['1.8rem', { fontWeight: '500' }],
lg: '2.4rem',
xl: '3.2rem',
},
borderRadius: {
sm: '0.4rem',
lg: '0.8rem',
full: '999.9rem',
},
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'checkbox-off': 'url(/icons/checkboxOFF.svg)',
'radio-off': 'url(/icons/radioOff.svg)',
},
colors: {
primary: {
'blue-900': '#0F2042',
main: '#3399FF',
darkblue: '#237FDB',
'darkblue-hover': '#0E6DCC',
'newlloyd-button': '#248FEF',
},
point: {
red: '#933224',
yellow: '#EAB737',
green: '#11B0A8',
'red-text': '#FF6651',
'green-hover': '#07AAA2',
},
bg: {
0: '#1A1C1F',
1: '#1E2023',
2: '#23262D',
3: '#363B43',
4: '#151719',
transparent: 'transparent',
},
neutral: {
'white-0': '#FFF',
'white-50': '#FCFCFC',
'navy-100': '#C7D1DB',
'navy-200': '#A4AFBA',
'navy-300': '#737C85',
'navy-800': '#5A5F64',
'navy-850': '#394149',
'navy-900': '#21252C',
'navy-950': '#171A1D',
'navy-1000': '#101010',
},
transparent: {
0: 'transparent',
gray: '#EBECF0',
navy: '#FAFBFC',
heart: 'rgba(166, 197, 226, 0.1)',
'navy-15': 'rgba(250, 251, 252, 0.15)',
'navy-30': 'rgba(159, 173, 188, 0.3)',
heart: 'rgba(166, 197, 226, 0.1)',
'navy-second': '#9FADBC',
blue: '#60AFFF',
darkblue: '#237FDB',
},
},
},
},
};