solarized_dark.scss 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. @font-face {
  11. font-family: 'League Gothic';
  12. src: url('../../lib/font/league_gothic-webfont.eot');
  13. src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'),
  14. url('../../lib/font/league_gothic-webfont.woff') format('woff'),
  15. url('../../lib/font/league_gothic-webfont.ttf') format('truetype'),
  16. url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg');
  17. font-weight: normal;
  18. font-style: normal;
  19. }
  20. @import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
  21. /**
  22. * Solarized colors by Ethan Schoonover
  23. */
  24. html * {
  25. color-profile: sRGB;
  26. rendering-intent: auto;
  27. }
  28. @import "solarized_colors.scss";
  29. // Override theme settings (see ../template/settings.scss)
  30. $mainColor: $base0;
  31. $headingColor: $yellow;
  32. $headingTextShadow: none;
  33. $backgroundColor: $base03;
  34. $linkColor: $blue;
  35. $linkColorHover: lighten( $linkColor, 20% );
  36. $selectionBackgroundColor: $magenta;
  37. $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
  38. // Theme template ------------------------------
  39. @import "../template/theme";
  40. // ---------------------------------------------