mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 06:42:59 +00:00
18 lines
341 B
JavaScript
18 lines
341 B
JavaScript
const colors = require("tailwindcss/colors");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
prefix: "ui-",
|
|
darkMode: "class",
|
|
content: [`src/**/*.{js,ts,jsx,tsx}`],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
brandblue: colors.blue[500],
|
|
brandred: colors.red[500],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|