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.
32 lines
457 B
32 lines
457 B
3 years ago
|
module.exports = {
|
||
|
darkMode: 'class',
|
||
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
||
|
theme: {
|
||
|
fontFamily: {
|
||
|
body: 'Roboto, sans-serif'
|
||
|
},
|
||
|
container: {
|
||
|
center: true,
|
||
|
screens: {
|
||
|
sm: '100%',
|
||
|
md: '100%',
|
||
|
lg: '700px',
|
||
|
xl: '900px'
|
||
|
},
|
||
|
borderWidth: {
|
||
|
DEFAULT: '1px',
|
||
|
0: '0',
|
||
|
2: '2px',
|
||
|
3: '3px',
|
||
|
4: '4px',
|
||
|
6: '6px',
|
||
|
8: '8px',
|
||
|
12: '12px',
|
||
|
20: '20px'
|
||
|
}
|
||
|
},
|
||
|
extend: {}
|
||
|
},
|
||
|
plugins: []
|
||
|
};
|