Skip to content
Extraits de code Groupes Projets
Sélectionner une révision Git
  • a0e9f8938668a10603a0fcaa5554d1184fd9c709
  • main par défaut protégée
  • aled
  • dev
4 résultats

README.md

Blame
  • Pour en savoir plus sur ce projet, lisez le wiki.
    tailwind.config.ts 528 o
    import type { Config } from "tailwindcss";
    
    export default {
      content: ["./src/**/*.{html,js,svelte,ts}"],
    
      theme: {
        extend: {
          fontFamily: {
            game: ["Londrina Solid", "monospace"],
          },
          borderWidth: {
            6: "6px",
          },
          colors: {
            random: Object.fromEntries(
              [50, 100, 200, 300, 400, 500, 600, 700, 800, 900].map((shade) => [
                shade,
                `var(--tw-random-color-${shade})`,
              ]),
            ),
          },
        },
      },
    
      plugins: [],
    } as Config;