File size: 598 Bytes
9edbfc0 faafb92 41c71b4 4331e77 9edbfc0 0e5ff83 9edbfc0 41c71b4 faafb92 4331e77 faafb92 41c71b4 4489403 9edbfc0 41c71b4 6487bd0 9edbfc0 41c71b4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
const defaultTheme = require("tailwindcss/defaultTheme");
const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "class",
mode: "jit",
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {
colors: {
gray: {
600: "#323843",
700: "#252a33",
800: "#1b1f27",
900: "#12151c",
950: "#07090d",
},
},
fontSize: {
xxs: "0.625rem",
smd: "0.94rem",
},
},
},
plugins: [
require("tailwind-scrollbar")({ nocompatible: true }),
require("@tailwindcss/typography"),
],
};
|