forked from noislabs/randdrop-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (38 loc) · 920 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'nois-blue': "#0C0914",
'nois-white': "#e0daee",
'nois-green': "#6ff2cf",
'nois-light-green': "#d4fff6"
},
boxShadow: {
'neon-sm': '0 0 3px 2px #6ff2cf20',
'neon-md': '0 0 6px 3px #6ff2cf50',
'neon-white-md': '0 0 6px 3px #e0daee50',
'this_is_outside_the_border': '0 0 0px 0px #FF0000'
},
keyframes: {
flash: {
'0%': { opacity: '0.2' },
'20%': { opacity: '1' },
'100%': { opacity: '0.2' },
},
},
animation: {
flash: 'flash 1.4s infinite linear',
},
},
},
variants: {
fill: ['hover', 'focus'],
},
plugins: [],
}