Files
zitadel/packages/zitadel-react/tailwind.config.js

22 lines
452 B
JavaScript
Raw Normal View History

2023-04-14 13:35:27 +02:00
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],
2023-04-24 09:54:47 +02:00
divider: {
light: "rgba(135,149,161,.2)",
dark: "rgba(135,149,161,.2)",
},
2023-04-14 13:35:27 +02:00
},
},
},
plugins: [],
};