mirror of
https://github.com/web3privacy/web
synced 2024-10-15 18:26:27 +02:00
15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
||
|
|
||
|
export default {
|
||
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
fontFamily: {
|
||
|
sans: ["Archivo", ...defaultTheme.fontFamily.sans],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|