mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-28 13:26:16 +03:00
23 lines
329 B
JavaScript
23 lines
329 B
JavaScript
const config = {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
darkMode: 'class',
|
|
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'SF Pro', '-apple-system', 'system-ui']
|
|
},
|
|
fontSize: {
|
|
xs: '10px',
|
|
sm: '12px',
|
|
base: '13px',
|
|
lg: '15px',
|
|
xl: '22px'
|
|
},
|
|
extend: {}
|
|
},
|
|
|
|
plugins: []
|
|
};
|
|
|
|
module.exports = config;
|