mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
doc: apply logical ordering to CSS variables
The CSS variables are not in any particular logical order as far as I can tell, with certain items that would seem to go together not grouped. This puts them in alphabetical order. PR-URL: https://github.com/nodejs/node/pull/39169 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Harshitha K P <harshitha014@gmail.com>
This commit is contained in:
@@ -25,23 +25,23 @@
|
||||
--gray7: #c1c1c1;
|
||||
--grey8: #ddd;
|
||||
|
||||
--api-stability-links-bg: rgba(255, 255, 255, .4);
|
||||
--color-brand-primary: var(--gray6);
|
||||
--color-brand-secondary: var(--green1);
|
||||
--color-fill-app: var(--white);
|
||||
--color-fill-side-nav: var(--gray6);
|
||||
--color-links: var(--green1);
|
||||
--color-text-nav: var(--gray3);
|
||||
--color-text-primary: var(--gray6);
|
||||
--color-text-secondary: var(--green2);
|
||||
--color-fill-app: var(--white);
|
||||
--color-text-nav: var(--gray3);
|
||||
--highlight-background-color: var(--white-smoke);
|
||||
--color-links: var(--green1);
|
||||
--color-fill-side-nav: var(--gray6);
|
||||
--api-stability-links-bg: rgba(255, 255, 255, .4)
|
||||
}
|
||||
|
||||
.dark-mode {
|
||||
--color-links: var(--green5);
|
||||
--color-fill-app: var(--black1);
|
||||
--color-text-primary: var(--white);
|
||||
--color-fill-side-nav: var(--black3);
|
||||
--color-links: var(--green5);
|
||||
--color-text-primary: var(--white);
|
||||
--highlight-background-color: var(--black2);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user