This repository has been archived on 2024-09-10. You can view files and clone it, but cannot push or open issues or pull requests.
hpp-platform/tailwind.config.js
2024-06-26 14:45:39 +03:00

18 lines
452 B
JavaScript

/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
ibm: ['"IBM Plex Sans"', ...defaultTheme.fontFamily.sans],
// raleway: ['"Raleway"', ...defaultTheme.fontFamily.sans],
// robotoSlab: ['"Roboto Slab"', ...defaultTheme.fontFamily.sans],
}
},
},
}