Peercord/Peercord Source/tailwind.config.js
0% [█ █ █ █ █ █ █ █ █ █] 100% 29e61f07f2 Full source
2026-06-14 21:28:04 -05:00

22 lines
474 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content:[
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
base: 'var(--color-base)',
surface: 'var(--color-surface)',
panel: 'var(--color-panel)',
accent: 'var(--color-accent)',
text: 'var(--color-text)',
muted: 'var(--color-muted)'
}
},
},
plugins:[
require('@tailwindcss/typography'),
],
}