mirror of
https://github.com/NebulaServices/Nebula.git
synced 2025-05-13 12:00:01 -04:00
18 lines
397 B
JavaScript
18 lines
397 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
colors: {
|
|
"primary": "var(--background-primary)",
|
|
"navbar-text-color": "var(--navbar-text-color)",
|
|
"navbar-color": "var(--navbar-color)",
|
|
"text-color": "var(--navbar-link-color)"
|
|
},
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|