pbw-explore/tailwind.config.cjs

25 řádky
451 B
JavaScript
Surový Normální zobrazení Historie

2023-01-24 02:20:11 +01:00
/** @type {import('tailwindcss').Config} */
2023-01-30 04:04:13 +01:00
const defaultTheme = require('tailwindcss/defaultTheme');
2023-01-24 02:20:11 +01:00
module.exports = {
2023-01-30 04:04:13 +01:00
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['Barlow Semi Condensed', ...defaultTheme.fontFamily.sans]
},
colors: {
pbw: {
red: '#ff1616',
yellow: '#ffde59',
white: '#ffffff',
2023-01-31 09:56:36 +01:00
dark: '#121212'
2023-01-30 04:04:13 +01:00
}
}
}
},
darkMode: 'class',
plugins: []
2023-01-24 04:43:57 +01:00
};