Mirror of the sourcecode for my blog, original repo: https://github.com/NobbZ/blog-nobbz-dev
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 442cfbb3d0b9ff8610b70128b665a6db7d5607f5 26 lines 1.3 kB view raw
1/* SPDX-FileCopyrightText: 2025 Norbert Melzer 2 SPDX-FileContributor: Norbert Melzer 3 4 SPDX-License-Identifier: MIT */ 5 6/** @type {import('tailwindcss').Config} */ 7 8import catppuccin from "@catppuccin/tailwindcss"; 9import postcss from "tailwindcss/postcss"; 10 11export default { 12 content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"], 13 theme: { 14 extend: { 15 backgroundPosition: { 16 box: "left theme(padding.2) top theme(padding.2)", 17 }, 18 backgroundImage: { 19 pen: 'url(\'data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="2.25em" height="2.25em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="rgb(52, 152, 219)" d="M20.71 7.04c.39-.39.39-1.04 0-1.41l-2.34-2.34c-.37-.39-1.02-.39-1.41 0l-1.84 1.83l3.75 3.75M3 17.25V21h3.75L17.81 9.93l-3.75-3.75L3 17.25Z"%2F%3E%3C%2Fsvg%3E\')', 20 quote: 21 'url(\'data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="2.25em" height="2.25em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="rgb(52, 152, 219)" d="M6 17h3l2-4V7H5v6h3zm8 0h3l2-4V7h-6v6h3z"%2F%3E%3C%2Fsvg%3E\')', 22 }, 23 }, 24 }, 25 plugins: [postcss, catppuccin({ defaultFlavour: "mocha", prefix: "ctp" })], 26};