mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-15 20:17:22 +00:00
public commit
This commit is contained in:
17
app/tailwind.config.js
Normal file
17
app/tailwind.config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
/** @type {import("tailwindcss").Config} */
|
||||
export default {
|
||||
content: ["./index.html", "./src/ui/**/*.tsx", "./src/ui/lib/mantine/theme.ts"],
|
||||
darkMode: "selector",
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
primary: "rgb(var(--color-primary) / <alpha-value>)",
|
||||
background: "rgb(var(--color-background) / <alpha-value>)",
|
||||
muted: "rgb(var(--color-muted) / <alpha-value>)",
|
||||
lightest: "rgb(var(--color-lightest) / <alpha-value>)",
|
||||
darkest: "rgb(var(--color-darkest) / <alpha-value>)"
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: [require("tailwindcss-animate")]
|
||||
};
|
||||
Reference in New Issue
Block a user