-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (44 loc) · 1000 Bytes
/
tailwind.config.js
File metadata and controls
44 lines (44 loc) · 1000 Bytes
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
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class',
theme: {
extend: {
colors: {
'rouge-blue': '#DD0000',
black: '#000000',
link: '#488BCF',
blue: '#1F6C98',
yellow: '#FFFF00',
svg: '#5B8EAB',
},
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
'3xl': '1600px',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
white: '#FFFFFF',
black: '#000000',
background: '#14477E',
'bleue-link': '#A2D8FF',
'black-icon': '#03E20C',
'light-gray': '#F2F2F2',
'dark-gray': '#C4C4C4',
input: 'rgba(250, 250, 250, 0.5)',
submit: '#EC1C24',
'card-gray': '#6A798D',
yellow: '#FFFF00',
'rouge-blue': '#DD0000',
'menu-back': '#365B9D',
'button-blue': '#0E97C3',
'title-back': '#C8D2DD',
},
},
plugins: [],
};