mirror of
https://github.com/Xevion/100prisoners.git
synced 2025-12-05 23:14:15 -06:00
17 lines
399 B
JavaScript
17 lines
399 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
playfair: ["\"Playfair Display\"", "serif"],
|
|
rokkitt: ["\"Rokkitt\"", "serif"]
|
|
}
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography')
|
|
],
|
|
};
|