mirror of
https://github.com/System-End/hackpad.git
synced 2026-04-20 00:35:24 +00:00
23 lines
375 B
JavaScript
23 lines
375 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
'backgroundColor': '#150C21',
|
|
},
|
|
fontFamily: {
|
|
mono: ['Ubuntu Mono', 'monospace'],
|
|
sans: ['Poppins', 'sans-serif'],
|
|
}
|
|
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
],
|
|
}
|
|
|