-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (49 loc) · 1.18 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
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{ts,tsx}'],
darkMode: ['class'],
theme: {
screens: {
xs: '450px',
...defaultTheme.screens,
},
colors: {
indigo: colors.indigo,
transparent: colors.transparent,
black: colors.black,
white: colors.white,
danger: colors.red,
success: colors.green,
vulcan: {
300: '#9FA5C6',
800: '#282C43',
900: '#151723',
},
},
extend: {
animation: {
'stretch-compress': 'stretch-compress 1.4s ease-in-out infinite',
spin: 'spin 1.4s linear infinite',
},
keyframes: {
'stretch-compress': {
'0%': {
strokeDasharray: '1px, 200px',
strokeDashoffset: '0',
},
'50%': {
strokeDasharray: '100px, 200px',
strokeDashoffset: '-15px',
},
'100%': {
strokeDasharray: '100px, 200px',
strokeDashoffset: '-125px',
},
},
},
},
},
plugins: [],
};