mirror of
https://github.com/nimbold/Firelink.git
synced 2026-07-26 12:08:27 +00:00
28 lines
532 B
JavaScript
28 lines
532 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
sidebar: {
|
|
bg: '#1C1C1E',
|
|
glass: 'rgba(28, 28, 30, 0.7)',
|
|
},
|
|
main: {
|
|
bg: '#000000',
|
|
},
|
|
accent: '#0A84FF',
|
|
border: '#38383A',
|
|
item: {
|
|
hover: 'rgba(255, 255, 255, 0.1)',
|
|
selected: 'rgba(10, 132, 255, 0.2)',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|