mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
1 year ago
|
|
||
|
@use 'header';
|
||
|
|
||
|
/**
|
||
|
* Any CSS included here will be global. The classic template
|
||
|
* bundles Infima by default. Infima is a CSS framework designed to
|
||
|
* work well for content-centric websites.
|
||
|
*/
|
||
|
|
||
|
/* You can override the default Infima variables here. */
|
||
|
:root {
|
||
|
--ifm-color-primary: #3498db;
|
||
|
--ifm-color-primary-dark: #2980b9;
|
||
|
--ifm-color-primary-darker: #2471a3;
|
||
|
--ifm-color-primary-darkest: #1f618d;
|
||
|
--ifm-color-primary-light: #5fa8d0;
|
||
|
--ifm-color-primary-lighter: #76b9e0;
|
||
|
--ifm-color-primary-lightest: #a5d8ff;
|
||
|
--ifm-code-font-size: 95%;
|
||
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
/* For readability concerns, you should choose a lighter palette in dark mode. */
|
||
|
[data-theme='dark'] {
|
||
|
--ifm-color-primary: #258cc2;
|
||
|
--ifm-color-primary-dark: #2074a0;
|
||
|
--ifm-color-primary-darker: #1d6a8e;
|
||
|
--ifm-color-primary-darkest: #1a5779;
|
||
|
--ifm-color-primary-light: #29a7d5;
|
||
|
--ifm-color-primary-lighter: #32b9e1;
|
||
|
--ifm-color-primary-lightest: #4fcbe9;
|
||
|
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
||
|
}
|