This repository was archived by the owner on Dec 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
84 lines (84 loc) · 1.96 KB
/
tailwind.config.js
File metadata and controls
84 lines (84 loc) · 1.96 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// See https://tailwindcss.com/docs/configuration for details
module.exports = {
future: {
purgeLayersByDefault: true,
removeDeprecatedGapUtilities: true,
defaultLineHeights: true,
standardFontWeights: true,
},
purge: {
content: ['./src/**/*.jsx'],
},
theme: {
extend: {
flexGrow: {
2: '2',
},
fontFamily: {
sans: ['Garet', 'Open Sans', 'Helvetica', 'Arial', 'sans-serif'],
mono: ['Ubuntu Mono', 'Roboto Mono', 'Menlo', 'monospace'],
},
fontSize: {
'7xl': '5rem',
},
height: {
'1/2': '50%',
'1/8': '12.5%',
},
inset: {
3: '3rem',
'1/2': '50%',
},
margin: {
'-10px': '-10px',
},
rotate: {
270: '270deg',
},
screens: {
'max-sm': { max: '639px' },
'max-md': { max: '767px' },
},
boxShadow: {
'box-purple': '-7px 7px 0 rgb(132, 23, 221)',
},
textShadow: {
'headline-purple': '-4px 4px 0 rgb(132, 23, 221)',
},
spacing: {
'1/2': '50%',
'3/4': '75%',
96: '24rem',
larger: '50rem',
huge: '80rem',
},
transformOrigin: {
'center-top': 'center top',
},
zIndex: {
'-10': '-10',
'-5': '-5',
},
colors: {
'brand-gray': '#7C7C7C',
'brand-gray-dark': '#464545',
'brand-gray-darkest': '#2D2D2D',
'brand-gray-lighter': '#979797',
'brand-gray-light': '#F1EFEF',
'brand-eggshell': '#f8f8f8',
'gray-primary': '#242323',
'hubblr-purple': '#8417dd',
'hubblr-turquoise': '#4ad0d9',
'hubblr-blue': '#4299e1',
'hubblr-green': '#4fd1c5',
},
},
},
variants: {},
plugins: [
// eslint-disable-next-line global-require
require('@tailwindcss/custom-forms'),
// eslint-disable-next-line global-require
require('tailwindcss-textshadow'),
],
};