black.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /**
  2. * Black theme for reveal.js. This is the opposite of the 'white' theme.
  3. *
  4. * By Hakim El Hattab, http://hakim.se
  5. */
  6. // Default mixins and settings -----------------
  7. @use "sass:color";
  8. @import "../template/mixins";
  9. @import "../template/settings";
  10. // ---------------------------------------------
  11. // Include theme-specific fonts
  12. @import url(./fonts/source-sans-pro/source-sans-pro.css);
  13. // Override theme settings (see ../template/settings.scss)
  14. $backgroundColor: #191919;
  15. $mainColor: #fff;
  16. $headingColor: #fff;
  17. $mainFontSize: 42px;
  18. $mainFont: 'Source Sans Pro', Helvetica, sans-serif;
  19. $headingFont: 'Source Sans Pro', Helvetica, sans-serif;
  20. $headingTextShadow: none;
  21. $headingLetterSpacing: normal;
  22. $headingTextTransform: uppercase;
  23. $headingFontWeight: 600;
  24. $linkColor: #42affa;
  25. $linkColorHover: color.scale( $linkColor, $lightness: 15% );
  26. $selectionBackgroundColor: rgba( $linkColor, 0.75 );
  27. $heading1Size: 2.5em;
  28. $heading2Size: 1.6em;
  29. $heading3Size: 1.3em;
  30. $heading4Size: 1.0em;
  31. // Change text colors against light slide backgrounds
  32. @include light-bg-text-color(#222);
  33. // Theme template ------------------------------
  34. @import "../template/theme";
  35. // ---------------------------------------------