Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 64 additions & 31 deletions docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/* Brand Colors - Modern developer aesthetic */
--vp-c-brand-1: #00d9ff; /* Bright cyan - primary brand */
--vp-c-brand-2: #00b8d9; /* Darker cyan - hover states */
--vp-c-brand-3: #0097a7; /* Even darker - active states */
--vp-c-brand-3: #00acc1; /* Even darker - active states */
--vp-c-brand-soft: rgba(0, 217, 255, 0.14);

/* Accent Colors - Terminal-inspired green */
Expand Down Expand Up @@ -70,21 +70,21 @@

/* Light mode customizations */
:root:not(.dark) {
/* Light mode brand colors - more muted for better readability */
--vp-c-brand-1: #0097a7; /* Darker cyan for light mode */
--vp-c-brand-2: #00838f; /* Even darker on hover */
--vp-c-brand-3: #006064; /* Active state */
--vp-c-brand-soft: rgba(0, 151, 167, 0.08);
/* Light mode brand colors - brighter for better visibility */
--vp-c-brand-1: #00acc1; /* Bright cyan for light mode */
--vp-c-brand-2: #0097a7; /* Slightly darker on hover */
--vp-c-brand-3: #00838f; /* Active state */
--vp-c-brand-soft: rgba(0, 172, 193, 0.08);

/* Adjusted success colors for light mode */
--vp-c-success-1: #2e7d32;
--vp-c-success-2: #1b5e20;
--vp-c-success-soft: rgba(46, 125, 50, 0.08);
--vp-c-success-1: #4caf50;
--vp-c-success-2: #388e3c;
--vp-c-success-soft: rgba(76, 175, 80, 0.08);

/* Adjusted warning colors */
--vp-c-warning-1: #ef6c00;
--vp-c-warning-2: #e65100;
--vp-c-warning-soft: rgba(239, 108, 0, 0.08);
--vp-c-warning-1: #ff9800;
--vp-c-warning-2: #f57c00;
--vp-c-warning-soft: rgba(255, 152, 0, 0.08);

/* Background colors with better contrast */
--vp-c-bg: #ffffff;
Expand All @@ -104,7 +104,7 @@

/* Light mode code styling */
--vp-c-code-bg: #f1f3f5;
--vp-c-code-color: #006064;
--vp-c-code-color: #00838f;

/* Code blocks in light mode */
--vp-code-block-bg: #f8f9fa;
Expand Down Expand Up @@ -146,28 +146,31 @@
margin-left: 0.25rem;
transition: all 0.3s ease;
color: var(--vp-c-text-1);
}

/* Gradient text on hover only */
.VPNavBarTitle:hover .title {
background: linear-gradient(120deg, #00d9ff 0%, #52e892 50%, #ff9100 100%);
background-image: linear-gradient(
120deg,
#00d9ff 0%,
#52e892 50%,
#ff9100 100%
);
background-size: 200% 100%;
background-position: 100% 0;
-webkit-background-clip: text;
background-clip: text;
Comment on lines +149 to 158
Copy link

Copilot AI Sep 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The gradient properties are duplicated between the default state and light mode. Consider extracting the common gradient properties into CSS custom properties to reduce duplication and improve maintainability.

Copilot uses AI. Check for mistakes.
-webkit-text-fill-color: transparent;
}

/* Light mode hover gradient */
:root:not(.dark) .VPNavBarTitle:hover .title {
background: linear-gradient(120deg, #0097a7 0%, #2e7d32 50%, #ef6c00 100%);
background-size: 200% 100%;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
/* Light mode gradient */
:root:not(.dark) .VPNavBarTitle .title {
background-image: linear-gradient(
120deg,
#00acc1 0%,
#4caf50 50%,
#ff9800 100%
);
}

/* Add animation on hover */
/* Gradient text on hover */
.VPNavBarTitle:hover .title {
-webkit-text-fill-color: transparent;
animation: shimmer 2s ease-in-out infinite;
filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.3));
}
Expand Down Expand Up @@ -225,9 +228,9 @@ h1,
line-height: 1.2;
}

/* Site title specific adjustment */
/* Site title specific adjustment - font sizing */
.VPNavBarTitle .title {
font-size: 1.3rem;
font-size: 1.3rem !important;
Comment on lines 232 to +233
Copy link

Copilot AI Sep 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using !important is generally discouraged as it makes CSS harder to maintain and override. Consider using more specific selectors or restructuring the CSS hierarchy to avoid the need for !important.

Copilot uses AI. Check for mistakes.
letter-spacing: 0.05em;
}

Expand All @@ -237,12 +240,36 @@ h1,
}

.VPHero .name {
background: linear-gradient(135deg, #00d9ff 0%, #52e892 50%, #ff9100 100%);
background: linear-gradient(
120deg,
#00d9ff 0%,
#52e892 50%,
#ff9100 100%
);
background-size: 200% 100%;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 900;
letter-spacing: -0.02em;
font-size: 5rem !important;
line-height: 1.1 !important;
animation: shimmer 3s ease-in-out infinite;
filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.3));
}

/* Light mode hero gradient */
:root:not(.dark) .VPHero .name {
background: linear-gradient(
120deg,
#00acc1 0%,
#4caf50 50%,
#ff9800 100%
);
background-size: 200% 100%;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}

.VPHero .tagline {
Expand Down Expand Up @@ -536,9 +563,15 @@ div[class*="language-"] .copy:hover {
}

/* Responsive improvements */
@media (max-width: 1024px) {
.VPHero .name {
font-size: 4rem !important;
}
}

@media (max-width: 768px) {
.VPHero .name {
font-size: 3rem !important;
font-size: 3.5rem !important;
}

.VPHero .tagline {
Expand Down
Binary file modified docs/public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/public/favicon.ico
Binary file not shown.
15 changes: 11 additions & 4 deletions docs/public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{
"name": "",
"short_name": "",
"name": "mise-en-place",
"short_name": "mise",
"description": "The front-end to your dev env",
"icons": [
{
"src": "/logo.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "any maskable"
},
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
Expand All @@ -13,7 +20,7 @@
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"theme_color": "#1a1a1a",
"background_color": "#1a1a1a",
"display": "standalone"
}
Loading