mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-06 11:16:04 -06:00
22 lines
559 B
JavaScript
22 lines
559 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
|
|
|
module.exports = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
darkMode: "class",
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
mono: ['IBM Plex Mono', ...defaultTheme.fontFamily.mono],
|
|
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
colors: {
|
|
zinc: {
|
|
850: "#1D1D20",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|