diff --git a/package-lock.json b/package-lock.json index 99990ba..3d0f5d3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -15,7 +15,7 @@ "@sveltejs/adapter-vercel": "^3.0.3", "@sveltejs/kit": "^1.24.1", "@sveltejs/package": "^2.2.2", - "@tailwindcss/typography": "^0.5.9", + "@tailwindcss/typography": "^0.5.10", "@types/node": "^20.5.9", "@typescript-eslint/eslint-plugin": "^6.6.0", "@typescript-eslint/parser": "^6.6.0", @@ -24,7 +24,7 @@ "eslint-config-prettier": "^9.0.0", "eslint-plugin-svelte": "^2.33.0", "highlight.js": "^11.8.0", - "marked": "^8.0.0", + "marked": "^8.0.1", "marked-highlight": "^2.0.5", "marked-smartypants": "^1.1.2", "postcss": "^8.4.29", @@ -36,7 +36,7 @@ "tailwindcss": "^3.3.3", "tslib": "^2.6.2", "typescript": "^5.2.2", - "uico": "^0.1.0", + "uico": "^0.1.1", "vite": "^4.4.9" } }, @@ -743,9 +743,9 @@ } }, "node_modules/@tailwindcss/typography": { - "version": "0.5.9", - "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.9.tgz", - "integrity": "sha512-t8Sg3DyynFysV9f4JDOVISGsjazNb48AeIYQwcL+Bsq5uf4RYL75C1giZ43KISjeDGBaTN3Kxh7Xj/vRSMJUUg==", + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.10.tgz", + "integrity": "sha512-Pe8BuPJQJd3FfRnm6H0ulKIGoMEQS+Vq01R6M5aCrFB/ccR/shT+0kXLjouGC1gFLm9hopTFN+DMP0pfwRWzPw==", "dev": true, "dependencies": { "lodash.castarray": "^4.4.0", @@ -2612,9 +2612,9 @@ } }, "node_modules/marked": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/marked/-/marked-8.0.0.tgz", - "integrity": "sha512-RI/D5csFVreNrFchdKFSdV38GDHJdD7OdmbNWYzGvApPb0A9pyypgfHC/FBH4ugmRE8cr7yg/TH7tu8585eMhA==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/marked/-/marked-8.0.1.tgz", + "integrity": "sha512-eEbeEb/mJwh+sNLEhHOWtxMgjN/NEwZUBs1nkiIH2sTQTq07KmPMQ48ihyvo5+Ya56spVOPhunfGr6406crCVA==", "dev": true, "bin": { "marked": "bin/marked.js" @@ -4415,9 +4415,9 @@ } }, "node_modules/uico": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/uico/-/uico-0.1.0.tgz", - "integrity": "sha512-QmFuNKQZUirSPmJpzRn0c1eIUraPUOJc/33sNOiDPqMuphsyI8lYnpdda2TRx694L0VMXgKSYex2NjRNTh0yBA==", + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/uico/-/uico-0.1.1.tgz", + "integrity": "sha512-5sCmAznGUOc3hWt2aJs8y+5/xSNw6zmT6WIzZSCftLHl65fmm6Vf0F0gYKcyMDDpKCqbaJWSq2XVtq/5PNIYqw==", "dev": true, "dependencies": { "tailwindcss": "^3.3.3" diff --git a/package.json b/package.json index a99f245..f6e3c42 100644 --- a/package.json +++ b/package.json @@ -77,7 +77,7 @@ "tailwindcss": "^3.3.3", "tslib": "^2.6.2", "typescript": "^5.2.2", - "uico": "^0.1.0", + "uico": "^0.1.1", "vite": "^4.4.9" }, "svelte": "./dist/index.js", diff --git a/tailwind.config.js b/tailwind.config.js index 72c9ce4..1ee97d1 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -4,57 +4,5 @@ import { uico } from "uico"; /** @type {import('tailwindcss').Config} */ export default { content: ["./src/**/*.{html,js,svelte,ts}"], - theme: { - extend: { - fontFamily: { - antique: [ - "Superclarendon", - "Bookman Old Style", - "URW Bookman", - "URW Bookman L", - "Georgia Pro", - "Georgia", - "serif", - ], - }, - borderColor: { - DEFAULT: "hsl(var(--border))", - }, - colors: { - background: "hsl(var(--background))", - foreground: "hsl(var(--foreground))", - card: { - DEFAULT: "hsl(var(--card))", - foreground: "hsl(var(--card-foreground))", - }, - accent: { - DEFAULT: "hsl(var(--accent))", - foreground: "hsl(var(--accent-foreground))", - }, - muted: { - DEFAULT: "hsl(var(--muted))", - foreground: "hsl(var(--muted-foreground))", - }, - primary: { - DEFAULT: "hsl(var(--primary))", - foreground: "hsl(var(--primary-foreground))", - }, - secondary: { - DEFAULT: "hsl(var(--secondary))", - foreground: "hsl(var(--secondary-foreground))", - }, - destructive: { - DEFAULT: "hsl(var(--destructive))", - foreground: "hsl(var(--destructive-foreground))", - }, - }, - borderRadius: { - lg: "calc(var(--radius) + 4px)", - md: "calc(var(--radius) + 2px)", - DEFAULT: "var(--radius)", - sm: "calc(var(--radius) - 2px)", - }, - }, - }, plugins: [typography, uico], };