18 lines
353 B
JavaScript
18 lines
353 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
bg: '#0f1117',
|
|
panel: '#171a23',
|
|
panel2: '#1e222e',
|
|
border: '#2a2f3d',
|
|
accent: '#7c5cff',
|
|
accent2: '#00d2b8'
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
}
|