theme.module.scss 608 B

123456789101112131415
  1. @use "@pythnetwork/component-library/theme";
  2. // stylelint-disable property-no-unknown
  3. :export {
  4. border-light: theme.pallette-color("stone", 300);
  5. border-dark: theme.pallette-color("steel", 600);
  6. muted-light: theme.pallette-color("stone", 700);
  7. muted-dark: theme.pallette-color("steel", 300);
  8. chart-series-primary-light: theme.pallette-color("violet", 500);
  9. chart-series-primary-dark: theme.pallette-color("violet", 400);
  10. chart-series-neutral-light: theme.pallette-color("stone", 500);
  11. chart-series-neutral-dark: theme.pallette-color("steel", 300);
  12. }
  13. // stylelint-enable property-no-unknown