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.ts 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. export const shades = {
  2. none: 'none',
  3. white: 'rgba(248, 249, 250, 1.000)',
  4. lightGray: 'rgba(224, 226, 230, 1.000)',
  5. gray: 'rgba(172, 181, 189, 1.000)',
  6. darkGray: 'rgba(52, 58, 64, 1.000)',
  7. black: 'rgba(0,0,0, 1.000)',
  8. }
  9. export const strokes = {
  10. lime: 'rgba(115, 184, 23, 1.000)',
  11. green: 'rgba(54, 178, 77, 1.000)',
  12. teal: 'rgba(9, 167, 120, 1.000)',
  13. cyan: 'rgba(14, 152, 173, 1.000)',
  14. blue: 'rgba(28, 126, 214, 1.000)',
  15. indigo: 'rgba(66, 99, 235, 1.000)',
  16. violet: 'rgba(112, 72, 232, 1.000)',
  17. grape: 'rgba(174, 62, 200, 1.000)',
  18. pink: 'rgba(214, 51, 108, 1.000)',
  19. red: 'rgba(240, 63, 63, 1.000)',
  20. orange: 'rgba(247, 103, 6, 1.000)',
  21. yellow: 'rgba(245, 159, 0, 1.000)',
  22. }
  23. export const fills = {
  24. lime: 'rgba(217, 245, 162, 1.000)',
  25. green: 'rgba(177, 242, 188, 1.000)',
  26. teal: 'rgba(149, 242, 215, 1.000)',
  27. cyan: 'rgba(153, 233, 242, 1.000)',
  28. blue: 'rgba(166, 216, 255, 1.000)',
  29. indigo: 'rgba(186, 200, 255, 1.000)',
  30. violet: 'rgba(208, 191, 255, 1.000)',
  31. grape: 'rgba(237, 190, 250, 1.000)',
  32. pink: 'rgba(252, 194, 215, 1.000)',
  33. red: 'rgba(255, 201, 201, 1.000)',
  34. orange: 'rgba(255, 216, 168, 1.000)',
  35. yellow: 'rgba(255, 236, 153, 1.000)',
  36. }