variables.ts 281 B

1234567891011121314
  1. import { rgb } from 'polished';
  2. export const colors = {
  3. background: rgb(0, 0, 0),
  4. border: rgb(0, 0, 180),
  5. foreground: rgb(255, 255, 255),
  6. selected: {
  7. background: rgb(0, 0, 180),
  8. inactive: rgb(210, 210, 210),
  9. },
  10. active: {
  11. color: rgb(255, 255, 130),
  12. },
  13. };