mirror of
https://github.com/youwen5/blog.git
synced 2024-11-24 18:03:50 -08:00
less contrasty colors
This commit is contained in:
parent
ebcc0c86f4
commit
51d064c904
4 changed files with 12 additions and 6 deletions
|
@ -39,7 +39,7 @@
|
|||
@apply text-xl font-medium mt-8 text-accent-light dark:text-accent-dark;
|
||||
}
|
||||
p {
|
||||
@apply leading-loose my-4 text-[1rem];
|
||||
@apply leading-loose my-4;
|
||||
}
|
||||
img {
|
||||
@apply mx-auto my-6 rounded-lg;
|
||||
|
@ -53,6 +53,10 @@
|
|||
math[display="block"] {
|
||||
@apply overflow-x-auto my-1 text-xl;
|
||||
}
|
||||
ol,
|
||||
ul {
|
||||
@apply list-inside leading-loose;
|
||||
}
|
||||
ul {
|
||||
@apply list-disc ml-2;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -85,7 +85,9 @@
|
|||
>
|
||||
<header class="mt-14 md:mt-24 mb-14">
|
||||
<h1 class="text-4xl md:text-5xl font-serif font-medium">
|
||||
<a href="/" class="dark:hover:text-muted-dark transition-colors"
|
||||
<a
|
||||
href="/"
|
||||
class="dark:hover:text-muted-dark hover:text-muted-light transition-colors duration-500"
|
||||
>Gradient Ascent</a
|
||||
>
|
||||
</h1>
|
||||
|
|
|
@ -11,12 +11,12 @@ module.exports = {
|
|||
},
|
||||
colors: {
|
||||
primary: {
|
||||
dark: "#e2e8f0",
|
||||
light: "#0a0a0a",
|
||||
dark: "#e7e5e4",
|
||||
light: "#44403c",
|
||||
},
|
||||
secondary: {
|
||||
dark: "#2e1065",
|
||||
light: "#4f46e5",
|
||||
light: "#4338ca",
|
||||
},
|
||||
accent: {
|
||||
dark: "#9ca3af",
|
||||
|
|
Loading…
Reference in a new issue