mirror of
https://github.com/gosticks/partition-filter-visualization.git
synced 2025-10-16 11:55:35 +00:00
24 lines
469 B
JavaScript
24 lines
469 B
JavaScript
const colors = require('tailwindcss/colors');
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
darkMode: 'class',
|
|
theme: {
|
|
fontFamily: {
|
|
display: ['Source Serif Pro', 'Georgia', 'serif'],
|
|
body: ['Inter', 'system-ui', 'sans-serif']
|
|
},
|
|
|
|
extend: {
|
|
colors: {
|
|
primary: colors.blue,
|
|
secondary: colors.gray,
|
|
accent: colors.orange,
|
|
background: colors.gray
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|