mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
21 lines
380 B
JavaScript
21 lines
380 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
dark: '#161616',
|
|
light: '#f5f5f5'
|
|
},
|
|
fontFamily: {
|
|
sans: ['General-Sans', 'sans-serif']
|
|
},
|
|
fontSize: {
|
|
mini: '14px'
|
|
}
|
|
}
|
|
},
|
|
plugins: []
|
|
};
|