Files
OpenSign/docs/src/css/custom.css
T
2024-05-07 16:28:09 +05:30

39 lines
1.2 KiB
CSS

/**
* 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: #3254A0;
--ifm-color-primary-dark: #0A1026;
--ifm-color-primary-darker: #080F27;
--ifm-color-primary-darkest: #070E2A;
--ifm-color-primary-light: #0B194B;
--ifm-color-primary-lighter: #0E205F;
--ifm-color-primary-lightest: #112775;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(215, 16, 16, 0.1);
--ifm-color-primary-gradient: linear-gradient(45deg, #c6cde4, #112775); /* created by chatgpt */
}
/* For readability concerns, you should choose a lighter palette in dark mode. */
[data-theme='dark'] {
--ifm-color-primary: #5768a3;
--ifm-color-primary-dark: #21af90;
--ifm-color-primary-darker: #1fa588;
--ifm-color-primary-darkest: #1a8870;
--ifm-color-primary-light: #29d5b0;
--ifm-color-primary-lighter: #32d8b4;
--ifm-color-primary-lightest: #4fddbf;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}
/* created by chatgpt */
.hero.hero--primary.heroBannerGradient {
background: var(--ifm-color-primary-gradient);
}