Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

71 рядки
1.8 KiB

  1. @import '../common/css_variables.scss';
  2. $input-height: 28px !default;
  3. :root,
  4. [data-theme="light"] {
  5. --text-xs: 11px;
  6. --text-sm: 12px;
  7. --text-md: 13px;
  8. --text-base: 14px;
  9. --text-lg: 16px;
  10. --text-xl: 18px;
  11. --text-2xl: 20px;
  12. --text-3xl: 22px;
  13. --text-bold: 500;
  14. --navbar-height: 60px;
  15. // Layout Colors
  16. --bg-color: var(--gray-50);
  17. --fg-color: white;
  18. --navbar-bg: white;
  19. --fg-hover-color: var(--gray-100);
  20. --card-bg: var(--fg-color);
  21. --disabled-text-color: var(--gray-700);
  22. --disabled-control-bg: var(--gray-50);
  23. --control-bg: var(--gray-100);
  24. --control-bg-on-gray: var(--gray-200);
  25. --awesomebar-focus-bg: var(--fg-color);
  26. --modal-bg: white;
  27. --toast-bg: var(--modal-bg);
  28. --popover-bg: white;
  29. --checkbox-right-margin: var(--margin-xs);
  30. --base-checkbox-size: 14px;
  31. --custom-checkbox-size: 14px;
  32. --appreciation-color: var(--dark-green-600);
  33. --appreciation-bg: var(--dark-green-100);
  34. --criticism-color: var(--red-600);
  35. --criticism-bg: var(--red-100);
  36. // Error colors
  37. --error-bg: var(--red-50);
  38. --error-border: var(--red-400);
  39. // page
  40. --page-head-height: 75px;
  41. --page-bottom-margin: 60px;
  42. // input
  43. --input-height: #{$input-height};
  44. --input-disabled-bg: var(--gray-200);
  45. // timeline
  46. --timeline-item-icon-size: 34px;
  47. --timeline-item-left-margin: var(--margin-xl);
  48. --timeline-item-bottom-margin: var(--margin-sm);
  49. --timeline-content-max-width: 700px;
  50. --timeline-left-padding: calc(var(--padding-xl) + var(--timeline-item-icon-size) / 2);
  51. // mentions
  52. --user-mention-bg-color: var(--fg-color);
  53. --group-mention-bg-color: var(--bg-purple);
  54. // skeleton
  55. --skeleton-bg: var(--gray-100);
  56. --right-arrow-svg: url("data: image/svg+xml;utf8, <svg width='6' height='8' viewBox='0 0 6 8' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1.25 7.5L4.75 4L1.25 0.5' stroke='%231F272E' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  57. }