1
0

serif.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /**
  2. * A simple theme for reveal.js presentations, similar
  3. * to the default theme. The accent color is brown.
  4. *
  5. * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.
  6. */
  7. // Default mixins and settings -----------------
  8. @use "sass:color";
  9. @import "../template/mixins";
  10. @import "../template/settings";
  11. // ---------------------------------------------
  12. // Override theme settings (see ../template/settings.scss)
  13. $mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
  14. $mainColor: #000;
  15. $headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
  16. $headingColor: #383D3D;
  17. $headingTextShadow: none;
  18. $headingTextTransform: none;
  19. $backgroundColor: #F0F1EB;
  20. $linkColor: #51483D;
  21. $linkColorHover: color.scale( $linkColor, $lightness: 20% );
  22. $selectionBackgroundColor: #26351C;
  23. $overlayElementBgColor: 0, 0, 0;
  24. $overlayElementFgColor: 240, 240, 240;
  25. .reveal a {
  26. line-height: 1.3em;
  27. }
  28. // Change text colors against dark slide backgrounds
  29. @include dark-bg-text-color(#fff);
  30. // Theme template ------------------------------
  31. @import "../template/theme";
  32. // ---------------------------------------------