| 1234567891011121314151617181920212223242526 |
- :root {
- /**
- * Header and footer.
- */
- --header-background: #3c6b79;
- --ui-color-border: #7879c8;
- /**
- * Sidebar.
- */
- --sidebar-background: #1b4859;
- /**
- * Sections.
- */
- --section-title-background: #0f3a4f;
- --section-background-list: #121f37;
- --section-background-content: #395f75;
- /**
- * Input elments
- */
- --input-background: linear-gradient(0deg, rgba(187,132,64,1) 0%, rgba(200,173,120,1) 97%, rgba(209,169,143,1) 100%);
- --input-background-disabled: linear-gradient(0deg, rgba(93,61,32,1) 0%, rgba(100,86,60,1) 97%, rgba(104,84,71,1) 100%);
- --input-background-unchecked: rgb(96, 71, 40);
- --input-background-checked: rgba(209,169,143,1);
- }
|