1
0

serif.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. // Load utils
  8. @use 'sass:color';
  9. @use 'template/mixins' as mixins;
  10. $active-color: #51483d;
  11. // Inject theme variables (with some overrides)
  12. @use 'template/settings' with (
  13. $background-color: #f0f1eb,
  14. $main-font: "'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif",
  15. $main-font-size: 42px,
  16. $main-color: #000,
  17. $heading-color: #383d3d,
  18. $heading-font: "'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif",
  19. $heading-font-weight: 600,
  20. $heading-text-transform: none,
  21. $link-color: $active-color,
  22. $link-color-hover: color.scale($active-color, $lightness: 25%),
  23. $selection-color: #fff,
  24. $selection-background-color: $active-color,
  25. $overlay-element-bg-color: '0 0 0',
  26. $overlay-element-fg-color: '240 240 240'
  27. );
  28. // Inject the theme template
  29. @use 'template/theme';
  30. // Change text colors against light slide backgrounds
  31. @include mixins.dark-bg-text-color(#fff);
  32. .reveal a {
  33. line-height: 1.3em;
  34. }