-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
41 lines (41 loc) · 1.07 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: ['./index.html', './client/**/*.{js,jsx,ts,tsx}'],
theme: {
fontFamily: {
barriecito: ['Barriecito'],
bangers: ['Bangers'],
},
extend: {
colors: {
'primary-emphasis': '#7893DC',
'primary-dark': '#303B58',
'secondary-emphasis': '#CCDAFF',
'secondary-dark': '#6475AC',
'secondary-light': '#DAE3FF',
'primary-idle': '#AEC1F7',
'secondary-idle': '#E7ECFC',
'danger': '#BF4949',
'black': '#3F3D56',
'grey': '#B3BACD',
'modal-grey': '#BDBDBD',
'light-grey': '#D9D9D9',
},
borderRadius: {
'3xl': '30px',
},
backgroundSize: {
'200%': '200%',
},
boxShadow: {
'button-primary-emphasis': '0px 2px 2px 1px',
'input-border': '0px 0px 0px 1px',
'input-border-hover': '0px 0px 0px 2px',
'card': '-2px 4px 2px rgba(0, 0, 0, 0.25)',
'modal': '-2px 4px 2px #7893DC',
},
spacing: {},
},
},
plugins: [],
}