mirror of
https://github.com/fergalmoran/snapp.git
synced 2025-12-22 09:41:45 +00:00
19 lines
268 B
TypeScript
19 lines
268 B
TypeScript
import type { Config } from 'tailwindcss';
|
|
|
|
export default {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
darkMode: 'selector',
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ['Roboto']
|
|
},
|
|
extend: {
|
|
fontSize: {
|
|
xxs: '0.625rem'
|
|
}
|
|
}
|
|
},
|
|
|
|
plugins: []
|
|
} as Config;
|