_config.scss 956 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * Button
  3. */
  4. $config-button: (
  5. // Colors
  6. "color": (
  7. "text": map-deep-get($config-global, "color", "background", "default"),
  8. "text-hover": map-deep-get($config-global, "color", "background", "default"),
  9. "background": map-deep-get($config-global, "color", "primary", "default"),
  10. "background-hover": map-deep-get($config-global, "color", "primary", "hover"),
  11. ),
  12. // Fonts
  13. "font": (
  14. "family": (
  15. "fallback": map-deep-get($config-global, "font", "family", "primary", "fallback"),
  16. "css-var": map-deep-get($config-global, "font", "family", "primary", "css-var" ),
  17. ),
  18. "size": map-deep-get($config-global, "font", "size", "md"),
  19. "weight": bold,
  20. "line-height": 1,
  21. ),
  22. // Borders
  23. "border-radius": map-deep-get($config-global, "border-radius", "sm"),
  24. "border-width": 2px,
  25. // Padding
  26. "padding": (
  27. "vertical": map-deep-get($config-global, "spacing", "unit"),
  28. "horizontal": map-deep-get($config-global, "spacing", "unit"),
  29. ),
  30. );