Prepare Portainer deployment
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import type { Config } from "tailwindcss";
|
||||
|
||||
const config: Config = {
|
||||
darkMode: "class",
|
||||
content: ["./src/**/*.{ts,tsx}"],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
bg: "rgb(var(--bg) / <alpha-value>)",
|
||||
fg: "rgb(var(--fg) / <alpha-value>)",
|
||||
muted: "rgb(var(--muted) / <alpha-value>)",
|
||||
line: "rgb(var(--line) / <alpha-value>)",
|
||||
accent: "rgb(var(--accent) / <alpha-value>)",
|
||||
"accent-fg": "rgb(var(--accent-fg) / <alpha-value>)",
|
||||
danger: "rgb(var(--danger) / <alpha-value>)",
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ["var(--font-sans)", "ui-sans-serif", "system-ui", "sans-serif"],
|
||||
},
|
||||
borderRadius: { DEFAULT: "10px" },
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user