chore: initialized developer documentation

This commit is contained in:
RiO
2024-12-23 23:12:07 +05:30
commit e131cf9c43
41 changed files with 13033 additions and 0 deletions

30
src/css/custom.css Normal file
View File

@@ -0,0 +1,30 @@
/**
* 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: #6495ed; /* Changed primary color to #6495ed */
--ifm-color-primary-dark: #5a89d7; /* Adjusted dark color */
--ifm-color-primary-darker: #4f7cc4; /* Adjusted darker color */
--ifm-color-primary-darkest: #416ba2; /* Adjusted darkest color */
--ifm-color-primary-light: #74aef4; /* Adjusted light color */
--ifm-color-primary-lighter: #8bb8f7; /* Adjusted lighter color */
--ifm-color-primary-lightest: #9bbff9; /* Adjusted lightest color */
--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: #6495ed; /* Changed primary color to #6495ed */
--ifm-color-primary-dark: #5a89d7; /* Adjusted dark color */
--ifm-color-primary-darker: #4f7cc4; /* Adjusted darker color */
--ifm-color-primary-darkest: #416ba2; /* Adjusted darkest color */
--ifm-color-primary-light: #74aef4; /* Adjusted light color */
--ifm-color-primary-lighter: #8bb8f7; /* Adjusted lighter color */
--ifm-color-primary-lightest: #9bbff9; /* Adjusted lightest color */
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
}