css-variables.less 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. :root {
  2. // Neutral
  3. --white: @white;
  4. --neutral-10: @neutral-10;
  5. --neutral-20: @neutral-20;
  6. --neutral-30: @neutral-30;
  7. --neutral-40: @neutral-40;
  8. --neutral-50: @neutral-50;
  9. --neutral-60: @neutral-60;
  10. --neutral-70: @neutral-70;
  11. --neutral-80: @neutral-80;
  12. --neutral-90: @neutral-90;
  13. // Green
  14. --green-10: @green-10;
  15. --green-20: @green-20;
  16. --green-30: @green-30;
  17. --green-40: @green-40;
  18. --green-50: @green-50;
  19. --green-60: @green-60;
  20. --green-70: @green-70;
  21. // Blue
  22. --blue-10: @blue-10;
  23. --blue-20: @blue-20;
  24. --blue-30: @blue-30;
  25. --blue-40: @blue-40;
  26. --blue-50: @blue-50;
  27. --blue-60: @blue-60;
  28. --blue-70: @blue-70;
  29. // Red
  30. --red-10: @red-10;
  31. --red-20: @red-20;
  32. --red-30: @red-30;
  33. --red-40: @red-40;
  34. --red-50: @red-50;
  35. --red-60: @red-60;
  36. --red-70: @red-70;
  37. // Yellow
  38. --yellow-10: @yellow-10;
  39. --yellow-20: @yellow-20;
  40. --yellow-30: @yellow-30;
  41. --yellow-40: @yellow-40;
  42. --yellow-50: @yellow-50;
  43. --yellow-60: @yellow-60;
  44. --yellow-70: @yellow-70;
  45. // legacy variables
  46. --ol-blue: @ol-blue;
  47. --ol-blue-gray-0: @ol-blue-gray-0;
  48. --ol-blue-gray-1: @ol-blue-gray-1;
  49. --ol-blue-gray-2: @ol-blue-gray-2;
  50. --ol-blue-gray-3: @ol-blue-gray-3;
  51. --ol-blue-gray-4: @ol-blue-gray-4;
  52. --ol-blue-gray-5: @ol-blue-gray-5;
  53. --ol-blue-gray-6: @ol-blue-gray-6;
  54. // input
  55. --input-color: @input-color;
  56. --input-border: @input-border;
  57. --input-border-radius: @input-border-radius;
  58. --input-border-focus: @input-border-focus;
  59. --input-border-danger: @state-danger-border;
  60. --input-shadow-danger-color: fade(@state-danger-border, 50%);
  61. // border
  62. --btn-border-radius-base: @btn-border-radius-base;
  63. --btn-default-bg: @btn-default-bg;
  64. // text
  65. --line-height-base: @line-height-base;
  66. // toolbar
  67. --toolbar-btn-color: @toolbar-btn-color;
  68. --editor-toolbar-bg: @editor-toolbar-bg;
  69. // gradient
  70. --premium-gradient: @premium-gradient;
  71. // website-redesign
  72. --emerald-green: @emerald-green;
  73. --mint-green: @mint-green;
  74. --deep-green: @deep-green;
  75. --sapphire-blue: @sapphire-blue;
  76. --sapphire-blue-dark: @sapphire-blue-dark;
  77. }