mirror of
https://github.com/web3privacy/w3ps1.git
synced 2024-10-15 16:26:26 +02:00
17 lines
382 B
JavaScript
17 lines
382 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
const defaultTheme = require('tailwindcss/defaultTheme');
|
|
|
|
module.exports = {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
mono: ['DM Mono', ...defaultTheme.fontFamily.mono],
|
|
mono2: ['Major Mono Display', ...defaultTheme.fontFamily.mono]
|
|
}
|
|
}
|
|
},
|
|
plugins: [],
|
|
darkMode: ['class']
|
|
};
|