white.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /**
  2. * White theme for reveal.js. This is the opposite of the 'black' 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: #fff;
  15. $mainColor: #222;
  16. $headingColor: #222;
  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: #2a76dd;
  25. $linkColorHover: color.scale( $linkColor, $lightness: 15% );
  26. $selectionBackgroundColor: color.scale( $linkColor, $lightness: 25% );
  27. $heading1Size: 2.5em;
  28. $heading2Size: 1.6em;
  29. $heading3Size: 1.3em;
  30. $heading4Size: 1.0em;
  31. $overlayElementBgColor: 0, 0, 0;
  32. $overlayElementFgColor: 240, 240, 240;
  33. // Change text colors against dark slide backgrounds
  34. @include dark-bg-text-color(#fff);
  35. // Theme template ------------------------------
  36. @import "../template/theme";
  37. // ---------------------------------------------