pastelify

This commit is contained in:
Ubuntu 2025-04-05 07:29:55 +00:00
parent 8e9c714bf4
commit 79100a569d
4 changed files with 71 additions and 22 deletions

View file

@ -65,3 +65,48 @@ div.highlight:hover .copy-code,
pre:hover .copy-code {
display: block;
}
hr {
border: none;
border-top: 2px solid #444;
margin: 2rem auto;
width: 80%;
}
.buttons {
display: flex;
justify-content: center;
align-items: center;
gap: 0.1rem;
margin-top: 1rem;
flex-wrap: nowrap;
width: 50%;
text-align: center;
}
.button {
display: inline-flex;
align-items: center;
gap: 0.4rem;
padding: 0.5rem 1rem;
text-decoration: none;
transition: all 0.2s ease-in-out;
white-space: nowrap;
}
.button:hover {
transform: translateY(-1px);
}
.button svg {
vertical-align: middle;
}
.first-entry.home-info {
max-width: 800px;
margin: 0 auto;
text-align: center;
padding: 2rem;
}

View file

@ -6,28 +6,30 @@
--header-height: 60px;
--footer-height: 60px;
--radius: 20px;
--theme: rgb(255, 255, 255);
--entry: rgb(255, 255, 255);
--primary: rgb(15, 15, 15);
--secondary: rgb(108, 108, 108);
--tertiary: rgb(214, 214, 214);
--content: rgb(31, 31, 31);
--code-block-bg: rgb(28, 29, 33);
--code-bg: rgb(245, 245, 245);
--border: #2D1410;
/* Pastel Light Theme */
--theme: #fffafc;
--entry: #fff5f8;
--primary: #4b3f4e;
--secondary: #9c8c9f;
--tertiary: #d7c8dc;
--content: #4b3f4e;
--code-block-bg: #f9f2f7;
--code-bg: #f7edf3;
--border: #e5cfe0;
}
.dark {
--theme: #0C0B11;
--entry: #553a4a31;
--primary: rgb(218, 218, 219);
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--code-block-bg: #553A4A;
--code-bg: #553A4A;
--border: #553A4A;
--monet: #785767;
--theme: #2d2a32;
--entry: #3e3b44;
--primary: #e8e3e3; /* off-white */
--secondary: #9db5b2; /* muted seafoam */
--tertiary: #d9c6e2; /* soft lilac */
--content: #f3efe8; /* cream */
--code-block-bg: #394b4a; /* teal gray */
--code-bg: #3f2f3f; /* desaturated plum */
--border: #7d6b91; /* faded violet */
--monet: #aacfcf; /* pastel aqua */
}
.list {

View file

@ -3,7 +3,7 @@
{{- if site.Copyright }}
<span>{{ site.Copyright | markdownify }}</span>
{{- else }}
<span>&copy; {{ now.Year }} <a href="{{ "" | absLangURL }}">{{ site.Title }}</a></span>
<span>&copy; {{ now.Year }} <a href="{{ "" | absLangURL }}">Prashant Nandipati</a></span>
{{- end }}
<span>
Powered by

View file

@ -90,9 +90,11 @@
{{- end -}}
{{- /* Favicons */}}
<link rel="icon" href="{{ site.Params.assets.favicon | default "favicon.ico" | absURL }}">
<link rel="icon" type="image/png" href="https://github.com/itspacchu.png">
<!-- <link rel="icon" href="{{ site.Params.assets.favicon | default "favicon.ico" | absURL }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ site.Params.assets.favicon16x16 | default "favicon-16x16.png" | absURL }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.Params.assets.favicon32x32 | default "favicon-32x32.png" | absURL }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ site.Params.assets.favicon32x32 | default "favicon-32x32.png" | absURL }}"> -->
<link rel="apple-touch-icon" href="{{ site.Params.assets.apple_touch_icon | default "apple-touch-icon.png" | absURL }}">
<link rel="mask-icon" href="{{ site.Params.assets.safari_pinned_tab | default "safari-pinned-tab.svg" | absURL }}">
<meta name="theme-color" content="{{ site.Params.assets.theme_color | default "#2e2e33" }}">