pbw-explore/tailwind.config.cjs

32 řádky
657 B
JavaScript
Surový Normální zobrazení Historie

2023-01-24 02:20:11 +01:00
/** @type {import('tailwindcss').Config} */
2023-01-24 04:43:57 +01:00
const defaultTheme = require("tailwindcss/defaultTheme");
2023-01-24 02:20:11 +01:00
module.exports = {
2023-01-24 04:43:57 +01:00
content: ["./src/**/*.{html,js,svelte,ts}"],
2023-01-24 02:20:11 +01:00
theme: {
extend: {
fontFamily: {
2023-01-24 04:43:57 +01:00
"sans": ["Barlow Semi Condensed", ...defaultTheme.fontFamily.sans],
2023-01-24 02:20:11 +01:00
},
colors: {
2023-01-24 04:43:57 +01:00
"pbw": {
"red": "#ff1616",
"yellow": "#ffde59",
"white": "#ffffff",
2023-01-28 16:15:52 +01:00
"dark": "#252525"
2023-01-24 04:43:57 +01:00
},
2023-01-24 02:20:11 +01:00
},
},
},
plugins: [],
2023-01-26 16:32:36 +01:00
safelist: [
{
pattern: /col-span-(1|2|3|4|5|6|7|8|9|10|11|12)/,
},
{
pattern: /col-start-(1|2|3|4|5|6|7|8|9|10|11|12)/,
},
]
2023-01-24 04:43:57 +01:00
};