21 lines
441 B
JavaScript
21 lines
441 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./client/index.html', './client/src/**/*.{js,jsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ink: '#0b0d14',
|
|
panel: '#13161f',
|
|
panel2: '#1a1e2a',
|
|
line: '#252a38',
|
|
aqua: '#00d4ff',
|
|
gold: '#fbbf24',
|
|
},
|
|
boxShadow: {
|
|
glow: '0 18px 60px rgba(0, 212, 255, 0.14)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|