-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (41 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,tsx}"],
theme: {
container: {
center: true,
},
extend: {
backgroundImage: {
'hero-pattern': "url('https://www.w3schools.com//w3images/forestbridge.jpg')",
},
gridTemplateRows: {
'layout': 'auto minmax(400px, 1fr) auto',
},
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1440px',
},
colors: {
developerBlue: '#4D5BCE',
developerGreen: '#43D9AD',
developerComment: '#607B96',
developerString: '#E99287',
borderLightGray: '#1E2D3D',
textLightGray: '#607B96',
username: '#5565E8',
backgroundPrimary: '#010C15',
backgroundPage: '#011627',
backgroundTerminal : '#011221',
borderPrimary: '#1E2D3D',
borderHover: '#FEA55F',
backgroundAccordionMobile: '#1E2D3D',
none: 'unset',
backgroundConst: '#C98BDF'
}
},
},
plugins: [],
}