-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.cjs
61 lines (61 loc) · 1.45 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
container: {
center: true,
},
screens: {
xs: '475px',
sm: '640px',
md: '768px',
xl: '1200px',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
inherit: 'inherit',
backdrop: 'rgba(36, 36, 36, 0.45)',
white: '#FFFFFF',
black: '#000000',
'off-white': '#F8F8F8',
primary: {
light: '#ABE1FF',
DEFAULT: '#2DB3FF',
hover: '#2698D9',
dark: '#0C3045',
},
danger: {
DEFAULT: '#E83333',
hover: '#C52B2B',
},
green: {
lighter: '#EBFEF2',
light: '#E2FEED',
DEFAULT: '#198E48',
},
grey: {
lighter: '#F5F5F5', // white-hover
light: '#ECE3E3', // border
DEFAULT: '#B3B3B3', // placeholder
dark: '#656060', // text-secondary
darkest: '#242424', // text-primary
},
gray: {
50: '#f9fafb',
},
slate: {
100: '#f1f5f9',
},
},
extend: {
boxShadow: {
item: 'rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px',
'item-hover':
'rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px',
'3xl': '0px 30px 90px rgba(0, 0, 0, 0.4)',
},
},
},
plugins: [],
};