-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
81 lines (73 loc) · 2.13 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
theme: {
container: {
center: true,
padding: '1rem',
},
screens: {
xs: '450px',
// => @media (min-width: 450px) { ... }
sm: '575px',
// => @media (min-width: 576px) { ... }
md: '768px',
// => @media (min-width: 768px) { ... }
lg: '992px',
// => @media (min-width: 992px) { ... }
xl: '1200px',
// => @media (min-width: 1200px) { ... }
'2xl': '1400px',
// => @media (min-width: 1400px) { ... }
},
extend: {
colors: {
current: 'currentColor',
transparent: 'transparent',
white: '#FFFFFF',
black: '#121723',
dark: '#1D2430',
primary: '#4A6CF7',
yellow: '#FBB040',
'bg-color-dark': '#171C28',
'body-color': {
DEFAULT: '#788293',
dark: '#959CB1',
},
stroke: {
stroke: '#E3E8EF',
dark: '#353943',
},
gray: {
...colors.gray,
dark: '#1E232E',
light: '#F0F2F9',
},
},
boxShadow: {
signUp: '0px 5px 10px rgba(4, 10, 34, 0.2)',
one: '0px 2px 3px rgba(7, 7, 77, 0.05)',
two: '0px 5px 10px rgba(6, 8, 15, 0.1)',
three: '0px 5px 15px rgba(6, 8, 15, 0.05)',
sticky: 'inset 0 -1px 0 0 rgba(0, 0, 0, 0.1)',
'sticky-dark': 'inset 0 -1px 0 0 rgba(255, 255, 255, 0.1)',
'feature-2': '0px 10px 40px rgba(48, 86, 211, 0.12)',
submit: '0px 5px 20px rgba(4, 10, 34, 0.1)',
'submit-dark': '0px 5px 20px rgba(4, 10, 34, 0.1)',
btn: '0px 1px 2px rgba(4, 10, 34, 0.15)',
'btn-hover': '0px 1px 2px rgba(0, 0, 0, 0.15)',
'btn-light': '0px 1px 2px rgba(0, 0, 0, 0.1)',
},
dropShadow: {
three: '0px 5px 15px rgba(6, 8, 15, 0.05)',
},
},
},
plugins: [require('@tailwindcss/typography')],
};