-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (69 loc) · 1.76 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
module.exports = {
mode: 'jit',
purge: [
'./resources/views/**/*.blade.php',
'./resources/js/**/*.js',
],
darkMode: false,
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#000',
white: '#fff',
yellow: {
light: '#FFF9AE',
medium: '#FFEB6B',
dark: '#FFCA44',
DEFAULT: '#FFF200',
},
pink: {
light: '#F8C1D8',
medium: '#E887B7',
DEFAULT: '#EC008C',
},
beige: {
light: '#F4F1ED',
DEFAULT: '#E9E0D2',
},
gray: '#231F20',
},
container: {
center: true,
padding: '1rem',
},
fontFamily: {
'helsinki': ['Helsinki', 'sans-serif'],
'work': ['Work\\ Sans', 'sans-serif'],
'dm': ['DM\\ Sans', 'sans-serif'],
},
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
},
extend: {
padding: {
'9/16': '56.25%',
'2/3': '66.67%',
'full': '100%',
},
borderWidth: {
'11': '11px',
},
outline: {
pink: ['2px dotted #EC008C', '1px'],
yellow: ['2px dotted #FFF200', '1px'],
},
},
},
variants: {
extend: {
outline: ['focus-visible'],
borderWidth: ['hover', 'focus', 'focus-within'],
margin: ['hover', 'focus', 'focus-within'],
},
},
plugins: [],
}