You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

colors.js 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. const backgroundLight = "#F5F5F5";
  2. const backgroundDark = "#292E2C";
  3. const backgroundSecondaryLight = "#FFFFFF";
  4. const backgroundSecondaryDark = "#303534";
  5. const headerLight = "#FFFFFF";
  6. const headerDark = "#292E2C";
  7. const borderLight = "#E4E4E4";
  8. const borderDark = "#303534";
  9. const borderSecondaryLight = "#E4E4E4";
  10. const borderSecondaryDark = "#3D4442";
  11. const textPrimaryLight = "#0E0E0E";
  12. const textPrimaryDark = "#F7FBFA";
  13. const textSecondaryLight = "#909090";
  14. const textSecondaryDark = "#84928E";
  15. const iconsPrimaryLight = "#0E0E0E";
  16. const iconsPrimaryDark = "#F7FBFA";
  17. const popoverLight = "#FFFFFF";
  18. const popoverDark = "#292E2C";
  19. const realisedOrderLight = "#E0F4F0";
  20. const realisedOrderDark = "#00563E";
  21. const unrealisedOrderLight = "#FBE3E7";
  22. const unrealisedOrderDark = "#781737";
  23. export const lightColors = {
  24. background: backgroundLight,
  25. backgroundSecondary: backgroundSecondaryLight,
  26. header: headerLight,
  27. border: borderLight,
  28. borderSecondary: borderSecondaryLight,
  29. textPrimary: textPrimaryLight,
  30. textSecondary: textSecondaryLight,
  31. iconsPrimary: iconsPrimaryLight,
  32. popover: popoverLight,
  33. realisedOrder: realisedOrderLight,
  34. unrealisedOrder: unrealisedOrderLight,
  35. };
  36. // Dark theme colors
  37. export const darkColors = {
  38. background: backgroundDark,
  39. backgroundSecondary: backgroundSecondaryDark,
  40. header: headerDark,
  41. border: borderDark,
  42. borderSecondary: borderSecondaryDark,
  43. textPrimary: textPrimaryDark,
  44. textSecondary: textSecondaryDark,
  45. iconsPrimary: iconsPrimaryDark,
  46. popover: popoverDark,
  47. realisedOrder: realisedOrderDark,
  48. unrealisedOrder: unrealisedOrderDark,
  49. };