pbw-explore/tailwind.config.cjs

24 řádky
499 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
},
},
},
2023-01-28 23:39:50 +01:00
plugins: []
2023-01-24 04:43:57 +01:00
};