You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
457 B
21 lines
457 B
/** @type {import('tailwindcss').Config} */ |
|
export default { |
|
content: ['./src/**/*.{html,js,svelte,ts}'], |
|
theme: { |
|
extend: { |
|
colors: { |
|
// 4chan-style minimal color palette |
|
board: { |
|
bg: '#d6daf0', |
|
post: '#eef2ff', |
|
highlight: '#fffecc', |
|
border: '#b7c5d9' |
|
} |
|
}, |
|
fontFamily: { |
|
sans: ['system-ui', '-apple-system', 'sans-serif'] |
|
} |
|
} |
|
}, |
|
plugins: [] |
|
};
|
|
|