-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
76 lines (75 loc) · 1.39 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
/** @type {import('tailwindcss').Config} */
module.exports = {
mode: 'jit',
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
darkMode: 'class',
important: true,
theme: {
extend: {
screens: {
xs: '400px',
465: '465px',
md: '800px',
900: '900px',
1080: '1080px',
tall: { raw: '(min-height: 800px)' },
},
width: {
25: '6.25rem',
'1/7': '14.286%',
100: '25rem',
},
height: {
screen: 'calc(100vh - 76px)',
88: '22rem',
},
inset: {
22: '5.5rem',
88: '22rem',
},
padding: {
22: '5.5rem',
},
colors: {
amber: {
300: '#FFD852',
400: '#FFCD19',
500: '#FFC300',
},
sky: {
50: '#FAFDFF',
300: '#85CFFF',
400: '#52BBFF',
500: '#3AADF8',
},
zinc: {
700: '#2E2E33',
800: '#202024',
},
primary_yellow: '#FFDE6B',
secondary_blue: '#40B4FF',
deep_blue: '#3D4664',
stock_red: '#EB5554',
stock_green: '#46B262',
},
},
},
plugins: [
require('postcss-import'),
require('tailwindcss/nesting')(require('postcss-nesting')),
require('autoprefixer'),
require('tailwindcss'),
require('@kamona/tailwindcss-perspective'),
],
variants: {
scrollbar: ['rounded'],
},
}