Skip to content
Open
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
68 changes: 39 additions & 29 deletions packages/_site/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,22 @@ body,
font-family: "Noto Sans", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans,
Ubuntu, Cantarell, "Helvetica Neue", sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
"Segoe UI Symbol";
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings: "wdth" 100;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings: "wdth"100;
}

:root {
--transition-speed: 0.2s;
--border-radius: 0.25rem; /* 4px */
--border-radius: 0.25rem;
/* 4px */

--navbar-size: 4rem; /* 64px */
--navbar-size: 4rem;
/* 64px */

--sidebar-size: 20rem; /* 320px */
--sidebar-size: 20rem;
/* 320px */
Comment on lines -26 to +33
Copy link
Owner

Choose a reason for hiding this comment

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

Can you check what is causing this formatting and stop it.


--sidebar-margin-left: 0rem;
/* NOTE: This is left at 0 on purpose the time, in order to prevent
Expand Down Expand Up @@ -183,15 +186,16 @@ body,

:root, [data-theme="Dark"] {
--ds-surface: #181818;
--ds-surface-sunken: #232323;
--ds-surface-sunken: #232323;

/* --ds-surface: #1D2125;
--ds-surface-sunken: #161A1D; */

--svg-invert: 0.9;
--svg-logo-brightness: 1.5;

--color-bg: #0E0E0E; /* #201f1e; */
--color-bg: #0E0E0E;
/* #201f1e; */
--color-bg-compliment: #252525;

--border-color: #333333;
Expand All @@ -205,6 +209,10 @@ body,
--sidebar-color-bg: #00060D;
--sidebar-color-bg-hover: #535251;


/* Alert */
--alert-color-bg: var(--color-bg-compliment);

/* Button */
--btn-text: var(--cds-white);

Expand Down Expand Up @@ -248,16 +256,16 @@ body,
--code-block-background: #1A1A1A;
--code-block-shiki-background: #1A1A1A;
--code-block-shiki-color-text: #e1e4e8;
--code-block-shiki-color-background: #aa6e6e;
--code-block-shiki-token-constant: #79b8ff;
--code-block-shiki-token-string: #9ecbff;
--code-block-shiki-token-comment: #6a737d;
--code-block-shiki-token-keyword: #f97583;
--code-block-shiki-token-parameter: #FFAB70;
--code-block-shiki-token-function: #B392F0;
--code-block-shiki-token-string-expression: #dbedff;
--code-block-shiki-token-punctuation: #6a737d;
--code-block-shiki-token-link: #dbedff;
--code-block-shiki-color-background: #aa6e6e;
--code-block-shiki-token-constant: #79b8ff;
--code-block-shiki-token-string: #9ecbff;
--code-block-shiki-token-comment: #6a737d;
--code-block-shiki-token-keyword: #f97583;
--code-block-shiki-token-parameter: #FFAB70;
--code-block-shiki-token-function: #B392F0;
--code-block-shiki-token-string-expression: #dbedff;
--code-block-shiki-token-punctuation: #6a737d;
--code-block-shiki-token-link: #dbedff;
}

[data-theme="Light"] {
Expand Down Expand Up @@ -286,6 +294,8 @@ body,
--accordion-color: var(--text-color);
--accordion-hover: var(--color-bg-compliment);

/* Alert */
--alert-color-bg: var(--color-bg-compliment);
/* Button */
--btn-text: var(--cds-white);

Expand Down Expand Up @@ -350,17 +360,17 @@ body,
--code-block-background: #f5f5f5;
--code-block-shiki-background: #f5f5f5;
--code-block-shiki-color-text: #24292E;
--code-block-shiki-color-background: #aa6e6e;
--code-block-shiki-token-constant: #005cc5;
--code-block-shiki-token-string: #770000;
--code-block-shiki-token-comment: #6a737d;
--code-block-shiki-token-keyword: #d73a49;
--code-block-shiki-token-parameter: #E36209;
--code-block-shiki-color-background: #aa6e6e;
--code-block-shiki-token-constant: #005cc5;
--code-block-shiki-token-string: #770000;
--code-block-shiki-token-comment: #6a737d;
--code-block-shiki-token-keyword: #d73a49;
--code-block-shiki-token-parameter: #E36209;
/* --code-block-shiki-foreground: #E36209; */
--code-block-shiki-token-function: #6F42C1;
--code-block-shiki-token-string-expression: #032f62;
--code-block-shiki-token-punctuation: #6a737d;
--code-block-shiki-token-link: #032f62;
--code-block-shiki-token-function: #6F42C1;
--code-block-shiki-token-string-expression: #032f62;
--code-block-shiki-token-punctuation: #6a737d;
--code-block-shiki-token-link: #032f62;

/* Sheet */
--sheet-overlay: #00000088;
Expand Down
Loading