-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
59 lines (58 loc) · 1.34 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
const defaultTheme = require('tailwindcss/defaultTheme')
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
screens: {
xs: '475px',
...defaultTheme.screens,
},
extend: {
colors: {
primary: {
300: 'hsl(37, 100%, 65%)',
400: 'hsl(37, 98%, 54%)',
},
neutral: {
200: 'hsl(203, 25%, 90%)',
300: 'hsl(203, 28%, 79%)',
400: 'hsl(205, 37%, 55%)',
500: 'hsl(203, 22%, 55%)',
700: 'hsl(205, 30%, 27%)',
800: 'hsl(206, 45%, 15%)',
},
gray: {
300: 'hsl(0, 0%, 95%)',
},
white: 'hsl(0, 0%, 99%)',
},
duration: {
0: '0ms',
},
width: {
content: '327px',
'content-xs': '420px',
'content-sm': '524px',
'content-md': '689px',
'content-lg': '800px',
'content-2xl': '1110px',
grid: '327px',
'grid-sm': '524px',
'grid-md': '689px',
dialog: '327px',
'dialog-sm': '524px',
'dialog-md': '654px',
},
minWidth: {
dialog: '327px',
},
screens: {
'2xl': '1440px',
},
transitionProperty: {
triangle: 'fill, height',
},
},
},
plugins: [],
}