-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
42 lines (42 loc) · 975 Bytes
/
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: '#1171c0',
secondary: '#1177CB',
accent: '#008CFF',
'soft-blue': '#B7D5E6',
'softer-blue': '#D4E2F0',
'gray-primary': '#787676',
'gray-secondary': '#3c3c3c',
'red-primary': '#EC0909',
'green-soft': '#73CA5C',
},
borderRadius: {
'16px': '16px',
'24px': '24px',
'32px': '32px',
},
fontSize: {
'18px': '18px',
},
height: {
86: '362px',
},
boxShadow: {
'shadow-c-primary': '0px 0px 4px 0px rgba(0, 0, 0, 0.15)',
},
backgroundImage: {
header: "url('/assets/images/header_background.png')",
},
screens: {
minixl: '527px',
mini: '400px',
xm: '10px',
},
},
},
plugins: [],
}