summaryrefslogtreecommitdiffstats
path: root/docs/com/css/theme/source/solarized.scss
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-10-14 09:13:38 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-10-14 09:13:38 +0000
commitcfb353b01c2dd21007db01c2d18a5cbd415689b8 (patch)
tree16cd87a5c956af7bb0126e068d0702dda0f9768e /docs/com/css/theme/source/solarized.scss
parent733dbe143cd4d37787cdb167021129b9ffac78fa (diff)
parent6bb45e4d1ba014c1dd33bedff49be8afa9426d17 (diff)
Merge "remove 3rd part files with MIT or BSD license"
Diffstat (limited to 'docs/com/css/theme/source/solarized.scss')
-rwxr-xr-xdocs/com/css/theme/source/solarized.scss63
1 files changed, 0 insertions, 63 deletions
diff --git a/docs/com/css/theme/source/solarized.scss b/docs/com/css/theme/source/solarized.scss
deleted file mode 100755
index 912be56f3..000000000
--- a/docs/com/css/theme/source/solarized.scss
+++ /dev/null
@@ -1,63 +0,0 @@
-/**
- * Solarized Light theme for reveal.js.
- * Author: Achim Staebler
- */
-
-
-// Default mixins and settings -----------------
-@import "../template/mixins";
-@import "../template/settings";
-// ---------------------------------------------
-
-
-
-// Include theme-specific fonts
-@import url(../../lib/font/league-gothic/league-gothic.css);
-@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
-
-
-/**
- * Solarized colors by Ethan Schoonover
- */
-html * {
- color-profile: sRGB;
- rendering-intent: auto;
-}
-
-// Solarized colors
-$base03: #002b36;
-$base02: #073642;
-$base01: #586e75;
-$base00: #657b83;
-$base0: #839496;
-$base1: #93a1a1;
-$base2: #eee8d5;
-$base3: #fdf6e3;
-$yellow: #b58900;
-$orange: #cb4b16;
-$red: #dc322f;
-$magenta: #d33682;
-$violet: #6c71c4;
-$blue: #268bd2;
-$cyan: #2aa198;
-$green: #859900;
-
-// Override theme settings (see ../template/settings.scss)
-$mainColor: $base00;
-$headingColor: $base01;
-$headingTextShadow: none;
-$backgroundColor: $base3;
-$linkColor: $blue;
-$linkColorHover: lighten( $linkColor, 20% );
-$selectionBackgroundColor: $magenta;
-
-// Background generator
-// @mixin bodyBackground() {
-// @include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );
-// }
-
-
-
-// Theme template ------------------------------
-@import "../template/theme";
-// ---------------------------------------------