-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (47 loc) · 1.3 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
/* eslint-env node */
module.exports = {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
],
safelist: [
{ pattern: /.*-rainbow-[0-9]{3}/ }
],
theme: {
screens: {
mobile: { max: '639px' },
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1440px',
'3xl': '1600px',
'4xl': '1921px'
},
fontFamily: {
default: ['Bitter', 'serif'],
sans: ['Albert Sans', 'sans-serif'],
mono: ['IBM Plex Mono', 'monospace']
},
extend: {
colors: {
rainbow: {
// these match values from gamutColours
100: 'rgb(255, 192, 192)',
200: 'rgb(251, 199, 59)',
300: 'rgb(178, 245, 112)',
400: 'rgb(150, 253, 178)',
500: 'rgb(12, 255, 255)',
600: 'rgb(150, 178, 253)',
700: 'rgb(178, 112, 245)',
800: 'rgb(251, 59, 199)'
},
gray: {
main: 'rgb(135,137,165)'
},
offblack: 'rgb(19,20,25)'
}
}
},
plugins: []
};