-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (47 loc) · 1.21 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
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: '#090E34',
dark: '#1D2144',
primary: 'rgb(var(--color-primary) / <alpha-value>)',
yellow: '#FBB040',
'body-color': '#959CB1',
},
boxShadow: {
signUp: '0px 5px 10px rgba(4, 10, 34, 0.2)',
one: '0px 2px 3px rgba(7, 7, 77, 0.05)',
sticky: 'inset 0 -1px 0 0 rgba(0, 0, 0, 0.1)',
},
},
},
plugins: [],
};