1
0

night.scss 1021 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * Black 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: #e7ad52;
  10. // Inject theme variables (with some overrides)
  11. @use 'template/settings' with (
  12. $background-color: #111,
  13. $main-font: "'Open Sans', sans-serif",
  14. $main-color: #fff,
  15. $heading-color: #fff,
  16. $heading-font: "'Montserrat', Impact, sans-serif",
  17. $heading-text-transform: none,
  18. $heading-letter-spacing: -0.03em,
  19. $link-color: $active-color,
  20. $link-color-hover: color.scale($active-color, $lightness: 20%),
  21. $selection-color: #111,
  22. $selection-background-color: $active-color
  23. );
  24. // Inject the theme template
  25. @use 'template/theme';
  26. // Include theme-specific fonts
  27. @import url('https://fonts.googleapis.com/css?family=Montserrat:700');
  28. @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic');
  29. // Change text colors against light slide backgrounds
  30. @include mixins.light-bg-text-color(#222);