-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
69 lines (67 loc) · 1.69 KB
/
Copy pathtailwind.config.js
File metadata and controls
69 lines (67 loc) · 1.69 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {
fontSize: {
'2xl': "1.5rem"
},
width: {
'125': '31.25rem',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
'eerie-black': '#151719',
'raisin-black': '#25282C',
'cadet-grey': '#9BA9B4',
'alise-blue': '#D9E3EA',
'neon-blue': '#5D5DFF',
'neon-blue-hover': '#4b4acf',
'medium-slate-blue': '#7070FF',
'magenta-process': '#EA348F',
'rose-bonbon': '#EC4899',
'green-pigment': '#16A34A',
'green-pantone': '#18B451',
'pantone-266c': '#5d5dff',
'pantone-2736': '#5151f7',
'pantone-2727c': '#2b7de1',
'pantone-2726c': '#1861d8',
'pantone-212c': '#ec4899',
'pantone-213c': '#f12f82',
'pantone-7465c': '#3cbfae',
'pantone-7473c': '#16a794',
'pantone-426c': '#25282c',
'pantone-7479c': '#00ce7d',
'pantone-7731c': '#09a668',
'white-grey': '#D9E0EA',
'pantone-7543': '#98a4af',
'cadet-gray-dark': '#768693',
'light-red': '#DC2626',
'dark-grey': '#33363A',
'light-grey': '#707D86',
},
container: {
padding: '2rem',
screens: {
'sm': '72rem',
'md': '72rem',
'lg': '72rem',
'xl': '72rem',
'2xl': '72rem',
},
center: true,
},
scale: {
'101': '1.1',
},
letterSpacing: {
"m-wide": '.01em'
},
boxshadow3xl: {
'3xl': ':50px 40px 10px',
},
},
},
plugins: [],
}