-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (40 loc) · 1.05 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
'screen-blue': '#0000FF',
'screen-green': '#00FF00',
'screen-red': '#FF0000',
'brand-turquoise': '#0BDBD4',
'brand-purple': '#352166',
'brand-black': '#0A0613',
'brand-white': '#E5E5E5',
'brand-further-red': '#F20544',
'brand-green': '#00FF75',
'brand-red': '#F0386B',
'brand-gold': '#FFD600',
'brand-silver': '#B9B9B9',
'brand-bronze': '#FF7500',
},
letterSpacing: {
'brand-wide': '0.25em',
'brand-wider': '1em',
},
fontFamily: {
brand: ['TASA Orbiter VF Text', ...defaultTheme.fontFamily.sans],
},
gridTemplateRows: {
'scene-wrapper': '1080px 400px',
},
gridTemplateColumns: {
'item-card': '100px minmax(0, 1fr)',
},
},
},
variants: {
extend: {},
},
plugins: [require('@tailwindcss/forms')],
};