-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
51 lines (45 loc) · 1.35 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
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}", "./public/index.html"],
theme: {
fontFamily: {
sans: ['VT323', 'sans-serif'],
header: ['PressStart2P', 'sans-serif'],
},
screens: {
'xs': '475px',
'sm': '700px',
'md': '840px',
'lg': '1100px',
'xl': '1400px',
'2xl': '1700px',
},
extend: {
colors: {
slugGreen: '#92E643',
slugGreenDark: 'rgba(146, 230, 67, 0.5)',
primary: '#94e448',
secondary: '#9848e4',
background: '#101010',
accent: '#426621',
widget: '#1c1c1c',
disabled: '#919191',
exclusive: '#A3DBFF',
acolyte: '#FC9191',
incinerator: '#F44343',
pyro: '#FB6D00',
scorcher: '#F4A133',
},
keyframes: {
moveRainbow: {
'100%': { 'background-position': '4500vh' },
},
},
animation: {
'rainbow': 'moveRainbow 200s linear infinite',
},
},
},
plugins: [],
};