Skip to content

Commit

Permalink
Rework some colors and overall css cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
fr1t2 committed Dec 15, 2023
1 parent dc4a47f commit 1d99500
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion src/css/custom.css
Expand Up @@ -5,6 +5,8 @@
*/

/* You can override the default Infima variables here. */

/*
:root {
--ifm-color-primary: #ffa729;
--ifm-color-primary-dark: #ff9b0b;
Expand All @@ -24,6 +26,34 @@
--ifm-color-primary-lightest: #addbff;
}
*/

:root {
--ifm-color-primary: #4aafff;
--ifm-color-primary-dark: #29a0ff;
--ifm-color-primary-darker: #1999ff;
--ifm-color-primary-darkest: #0081e6;
--ifm-color-primary-light: #6bbeff;
--ifm-color-primary-lighter: #7bc5ff;
--ifm-color-primary-lightest: #addbff;
--ifm-color-primary: #4aafff;
--ifm-color-secondary: #ffa729;
--ifm-color-success: #00a400;
--ifm-color-info: #54c7ec;
--ifm-color-warning: #ffba00;
--ifm-color-danger: #fa383e;
}
[data-theme='dark'] {
--ifm-color-primary: #ffa729;
--ifm-color-primary-dark: #ff9b0b;
--ifm-color-primary-darker: #fc9400;
--ifm-color-primary-darkest: #cf7a00;
--ifm-color-primary-light: #ffb347;
--ifm-color-primary-lighter: #ffb955;
--ifm-color-primary-lightest: #ffcc82;
}


.grid-container {
display: grid;
gap: 10px;
Expand Down Expand Up @@ -65,4 +95,6 @@ html[data-theme='dark'] .docusaurus-highlight-code-line {
[data-theme='dark'] li code {
border: 1px solid var(--ifm-color-emphasis-100);
background-color: #282A36;
}
}


0 comments on commit 1d99500

Please sign in to comment.