updated development environment configuration

This commit is contained in:
Sebastian Wendel 2024-03-05 21:51:47 +01:00
parent 74ea07668e
commit 2f42f134d7
2 changed files with 34 additions and 0 deletions

View file

@ -30,6 +30,7 @@ in {
packageJSON = ../package.json;
yarnLock = ../yarn.lock;
yarnFlags = ["--offline" "--production=true"];
pkgConfig.sharp = {
nativeBuildInputs = with pkgs; [

33
tailwind.config.ts Normal file
View file

@ -0,0 +1,33 @@
import type { Config } from 'tailwindcss'
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import { fontFamily } from "tailwindcss/defaultTheme";
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
sans: ["Manrope", ...fontFamily.sans],
serif: ["Literata", ...fontFamily.serif],
mono: ["Martian", ...fontFamily.mono],
},
colors: {
green: "#f0506e",
red: "#f0506e",
pumpkin: "#f57855",
gold: "#ffdc50",
forest: "#28aa68",
teal: "#008791",
arctic: "#0cc0df",
aqua: "#5082d2",
black: "#282828",
}
},
},
plugins: [
typography,
forms,
],
} satisfies Config