mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-03 05:03:46 +00:00
Fixes blur noted in https://github.com/astral-sh/uv/pull/5316 but doesn't drop the title entirely. https://github.com/astral-sh/uv/pull/5316 is my preferred design, if the implementation was cost-free. <img width="1259" alt="Screenshot 2024-07-23 at 3 53 48 PM" src="https://github.com/user-attachments/assets/6f9b828b-884f-447d-8508-ba4023152e2f"> (nothing to see at the rest of the breakpoints >1220) <img width="1259" alt="Screenshot 2024-07-23 at 3 53 56 PM" src="https://github.com/user-attachments/assets/b892cd76-cd91-4e78-b8c8-58e16a8b1130">
126 lines
3.8 KiB
CSS
126 lines
3.8 KiB
CSS
:root {
|
|
--black: #261230;
|
|
--white: #ffffff;
|
|
--radiate: #d7ff64;
|
|
--flare: #6340ac;
|
|
--rock: #78876e;
|
|
--galaxy: #261230;
|
|
--space: #30173d;
|
|
--comet: #6f5d6f;
|
|
--cosmic: #de5fe9;
|
|
--sun: #ffac2f;
|
|
--electron: #46ebe1;
|
|
--aurora: #46eb74;
|
|
--constellation: #5f6de9;
|
|
--neutron: #cff3cf;
|
|
--proton: #f6afbc;
|
|
--nebula: #cdcbfb;
|
|
--supernova: #f1aff6;
|
|
--starlight: #f4f4f1;
|
|
--lunar: #fbf2fc;
|
|
--asteroid: #e3cee3;
|
|
--crater: #f0dfdf;
|
|
}
|
|
|
|
[data-md-color-scheme="astral-light"] {
|
|
--md-default-bg-color--dark: var(--black);
|
|
--md-primary-fg-color: var(--galaxy);
|
|
--md-typeset-a-color: var(--flare);
|
|
--md-accent-fg-color: var(--cosmic);
|
|
}
|
|
|
|
[data-md-color-scheme="astral-dark"] {
|
|
--md-default-bg-color: var(--galaxy);
|
|
--md-default-fg-color: var(--white);
|
|
--md-default-fg-color--light: var(--white);
|
|
--md-default-fg-color--lighter: var(--white);
|
|
--md-primary-fg-color: var(--space);
|
|
--md-primary-bg-color: var(--white);
|
|
--md-accent-fg-color: var(--cosmic);
|
|
|
|
--md-typeset-color: var(--white);
|
|
--md-typeset-a-color: var(--radiate);
|
|
--md-typeset-mark-color: var(--sun);
|
|
|
|
--md-code-fg-color: var(--white);
|
|
--md-code-bg-color: var(--space);
|
|
|
|
--md-code-hl-comment-color: var(--asteroid);
|
|
--md-code-hl-punctuation-color: var(--asteroid);
|
|
--md-code-hl-generic-color: var(--supernova);
|
|
--md-code-hl-variable-color: var(--starlight);
|
|
--md-code-hl-string-color: var(--radiate);
|
|
--md-code-hl-keyword-color: var(--supernova);
|
|
--md-code-hl-operator-color: var(--supernova);
|
|
--md-code-hl-number-color: var(--electron);
|
|
--md-code-hl-special-color: var(--electron);
|
|
--md-code-hl-function-color: var(--neutron);
|
|
--md-code-hl-constant-color: var(--radiate);
|
|
--md-code-hl-name-color: var(--md-code-fg-color);
|
|
|
|
--md-typeset-del-color: hsla(6, 90%, 60%, 0.15);
|
|
--md-typeset-ins-color: hsla(150, 90%, 44%, 0.15);
|
|
|
|
--md-typeset-table-color: hsla(0, 0%, 100%, 0.12);
|
|
--md-typeset-table-color--light: hsla(0, 0%, 100%, 0.035);
|
|
}
|
|
|
|
[data-md-color-scheme="astral-light"] img[src$="#only-dark"],
|
|
[data-md-color-scheme="astral-light"] img[src$="#gh-dark-mode-only"] {
|
|
display: none; /* Hide dark images in light mode */
|
|
}
|
|
|
|
[data-md-color-scheme="astral-light"] img[src$="#only-light"],
|
|
[data-md-color-scheme="astral-light"] img[src$="#gh-light-mode-only"] {
|
|
display: inline; /* Show light images in light mode */
|
|
}
|
|
|
|
[data-md-color-scheme="astral-dark"] img[src$="#only-light"],
|
|
[data-md-color-scheme="astral-dark"] img[src$="#gh-light-mode-only"] {
|
|
display: none; /* Hide light images in dark mode */
|
|
}
|
|
|
|
[data-md-color-scheme="astral-dark"] img[src$="#only-dark"],
|
|
[data-md-color-scheme="astral-dark"] img[src$="#gh-dark-mode-only"] {
|
|
display: inline; /* Show dark images in dark mode */
|
|
}
|
|
|
|
/* See: https://github.com/squidfunk/mkdocs-material/issues/175#issuecomment-616694465 */
|
|
.md-typeset__table {
|
|
min-width: 100%;
|
|
}
|
|
.md-typeset table:not([class]) {
|
|
display: table;
|
|
}
|
|
|
|
/* See: https://github.com/astral-sh/ruff/issues/8519 */
|
|
[data-md-color-scheme="astral-dark"] details summary a {
|
|
color: var(--flare);
|
|
}
|
|
|
|
/* See: https://github.com/astral-sh/ruff/issues/9046 */
|
|
[data-md-color-scheme="astral-dark"] div.admonition {
|
|
color: var(--md-code-fg-color);
|
|
background-color: var(--md-code-bg-color);
|
|
}
|
|
|
|
/* Prevent the shadow from the nav title from blurring the top link.
|
|
The box shadow isn't really doing anything anyway.
|
|
|
|
This is a consequence of the reduced nav spacing below. */
|
|
.md-nav--primary .md-nav__title {
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* Reducing spacing between nav items to fit more content */
|
|
.md-nav__link {
|
|
margin-top: 0.25em;
|
|
}
|
|
/* Retain larger spacing for each top-level section in the nav */
|
|
.md-nav__item--nested {
|
|
margin-top: 0.6em;
|
|
}
|
|
/* Retain larger spacing for the right-side table-of-contents nav */
|
|
.md-nav--secondary .md-nav__link {
|
|
margin-top: 0.5em;
|
|
}
|