ui-rta.css 730 B

1234567891011121314151617181920212223242526
  1. :root {
  2. /**
  3. * Header and footer.
  4. */
  5. --header-background: #3c6b79;
  6. --ui-color-border: #7879c8;
  7. /**
  8. * Sidebar.
  9. */
  10. --sidebar-background: #1b4859;
  11. /**
  12. * Sections.
  13. */
  14. --section-title-background: #0f3a4f;
  15. --section-background-list: #121f37;
  16. --section-background-content: #395f75;
  17. /**
  18. * Input elments
  19. */
  20. --input-background: linear-gradient(0deg, rgba(187,132,64,1) 0%, rgba(200,173,120,1) 97%, rgba(209,169,143,1) 100%);
  21. --input-background-disabled: linear-gradient(0deg, rgba(93,61,32,1) 0%, rgba(100,86,60,1) 97%, rgba(104,84,71,1) 100%);
  22. --input-background-unchecked: rgb(96, 71, 40);
  23. --input-background-checked: rgba(209,169,143,1);
  24. }