change color

This commit is contained in:
zackartz 2024-05-05 18:28:32 -04:00
parent 141de7c95f
commit 7bc48872c6
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
2 changed files with 8 additions and 1 deletions

7
.astro/types.d.ts vendored
View file

@ -136,6 +136,13 @@ declare module 'astro:content' {
type ContentEntryMap = {
"blog": {
"deploy-astro-on-nixos.md": {
id: "deploy-astro-on-nixos.md";
slug: "deploy-astro-on-nixos";
body: string;
collection: "blog";
data: InferEntrySchema<"blog">
} & { render(): Render[".md"] };
};
};

View file

@ -10,7 +10,7 @@ export default {
"--tw-prose-body": "rgba(var(--ctp-text), 1)",
"--tw-prose-headings": "rgba(var(--ctp-mauve), 1)",
"--tw-prose-hr": "rgba(var(--ctp-surface0), 1)",
"--tw-prose-code": "rgba(var(--ctp-pink), 1)",
"--tw-prose-code": "rgba(var(--ctp-red), 1)",
a: {
color: "rgba(var(--ctp-blue), 1)",
"text-decoration-thickness": ".1em",