mirror of
https://github.com/Xevion/rdap.git
synced 2025-12-12 16:12:41 -06:00
Use Inter var as global default font
This commit is contained in:
@@ -2,6 +2,8 @@
|
|||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
@import url('https://rsms.me/inter/inter.css');
|
||||||
|
|
||||||
dd {
|
dd {
|
||||||
margin: 0.5em 0 1em 2em;
|
margin: 0.5em 0 1em 2em;
|
||||||
}
|
}
|
||||||
@@ -12,7 +14,7 @@ dd {
|
|||||||
|
|
||||||
body {
|
body {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
@apply bg-zinc-900 text-white;
|
@apply font-sans bg-zinc-900 text-white;
|
||||||
}
|
}
|
||||||
|
|
||||||
dd, dl {
|
dd, dl {
|
||||||
|
|||||||
@@ -1,9 +1,14 @@
|
|||||||
/** @type {import('tailwindcss').Config} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
|
const defaultTheme = require('tailwindcss/defaultTheme')
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
||||||
darkMode: "class",
|
darkMode: "class",
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
|
fontFamily: {
|
||||||
|
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
|
||||||
|
},
|
||||||
colors: {
|
colors: {
|
||||||
zinc: {
|
zinc: {
|
||||||
850: "#1D1D20",
|
850: "#1D1D20",
|
||||||
|
|||||||
Reference in New Issue
Block a user