custom-theme.scss 794 B

1234567891011121314151617181920212223242526272829303132333435
  1. @import "reveal-js/css/theme/template/mixins";
  2. @import "reveal-js/css/theme/template/settings";
  3. $backgroundColor: rgb(3, 129, 45);
  4. $mainColor: #fff;
  5. $headingColor: #fff;
  6. $mainFontSize: 38px;
  7. $mainFont: 'Source Sans Pro', Helvetica, sans-serif;
  8. $headingFont: 'Source Sans Pro', Helvetica, sans-serif;
  9. $headingTextShadow: none;
  10. $headingLetterSpacing: normal;
  11. $headingTextTransform: uppercase;
  12. $headingFontWeight: 600;
  13. $linkColor: #42affa;
  14. $linkColorHover: lighten( $linkColor, 15% );
  15. $selectionBackgroundColor: lighten( $linkColor, 25% );
  16. $heading1Size: 2.5em;
  17. $heading2Size: 1.6em;
  18. $heading3Size: 1.3em;
  19. $heading4Size: 1.0em;
  20. @import "reveal-js/css/theme/template/theme";
  21. section.has-light-background {
  22. &, h1, h2, h3, h4, h5, h6 {
  23. color: #222;
  24. }
  25. }
  26. .reveal pre {
  27. margin: 50px auto;
  28. }