sky.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**
  2. * Sky theme for reveal.js.
  3. *
  4. * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
  5. */
  6. // Load utils
  7. @use 'sass:color';
  8. @use 'template/mixins' as mixins;
  9. $active-color: #2a76dd;
  10. // Inject theme variables (with some overrides)
  11. @use 'template/settings' with (
  12. $background: radial-gradient(#f7fbfc, #add9e4),
  13. $background-color: #f7fbfc,
  14. $main-color: #333,
  15. $main-font: "'Open Sans', sans-serif",
  16. $heading-color: #333,
  17. $heading-font: "'Quicksand', sans-serif",
  18. $heading-letter-spacing: -0.05em,
  19. $link-color: $active-color,
  20. $link-color-hover: color.scale($active-color, $lightness: 15%),
  21. $selection-color: #fff,
  22. $selection-background-color: $active-color,
  23. $overlay-element-bg-color: '0 0 0',
  24. $overlay-element-fg-color: '240 240 240'
  25. );
  26. // Inject the theme template
  27. @use 'template/theme';
  28. // Include theme-specific fonts
  29. @import url('https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic');
  30. @import url('https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700');
  31. // Change text when the background is inverted
  32. @include mixins.dark-bg-text-color(#fff);
  33. .reveal a {
  34. line-height: 1.3em;
  35. }