moon.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /**
  2. * Solarized Dark theme for reveal.js.
  3. * Author: Achim Staebler
  4. */
  5. // Default mixins and settings -----------------
  6. @import "../template/mixins";
  7. @import "../template/settings";
  8. // ---------------------------------------------
  9. // Include theme-specific fonts
  10. @import url(./fonts/league-gothic/league-gothic.css);
  11. @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
  12. /**
  13. * Solarized colors by Ethan Schoonover
  14. */
  15. // Solarized colors
  16. $base03: #002b36;
  17. $base02: #073642;
  18. $base01: #586e75;
  19. $base00: #657b83;
  20. $base0: #839496;
  21. $base1: #93a1a1;
  22. $base2: #eee8d5;
  23. $base3: #fdf6e3;
  24. $yellow: #b58900;
  25. $orange: #cb4b16;
  26. $red: #dc322f;
  27. $magenta: #d33682;
  28. $violet: #6c71c4;
  29. $blue: #268bd2;
  30. $cyan: #2aa198;
  31. $green: #859900;
  32. // Override theme settings (see ../template/settings.scss)
  33. $mainColor: $base1;
  34. $headingColor: $base2;
  35. $headingTextShadow: none;
  36. $backgroundColor: $base03;
  37. $linkColor: $blue;
  38. $linkColorHover: lighten( $linkColor, 20% );
  39. $selectionBackgroundColor: $magenta;
  40. // Change text colors against light slide backgrounds
  41. @include light-bg-text-color(#222);
  42. // Theme template ------------------------------
  43. @import "../template/theme";
  44. // ---------------------------------------------