aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorCristiano Almeida <[email protected]>2018-10-14 10:44:38 +0100
committerGitHub <[email protected]>2018-10-14 10:44:38 +0100
commit672971c9393925a62193b51dab14b8120d2488a1 (patch)
treed6ac42ff1dc75cb376a809cf46b40d0ed8e03fac /templates
parent2dd82ebe8abd6d61c70be0feb14ebe6fe45c858a (diff)
parent4d432861ab4cabb44cce513df1e4a46cb23f0e9e (diff)
downloadprotonmail-themes-3.14.19.tar.xz
protonmail-themes-3.14.19.zip
Merge pull request #14 from csalmeida/gulpv3.14.19
Replaced Webpack with Gulp. Theme updates.
Diffstat (limited to 'templates')
-rw-r--r--templates/_styles.scss (renamed from templates/theme_template.scss)35
-rw-r--r--templates/blue_and_orange/blue_and_orange.scss20
-rw-r--r--templates/dark_bubble_gum/dark_bubble_gum.scss20
-rw-r--r--templates/green_lume/green_lume.scss20
-rw-r--r--templates/monokai/monokai.scss20
-rw-r--r--templates/theme_example/theme_example.scss20
-rw-r--r--templates/vitamin_c/vitamin_c.scss20
7 files changed, 133 insertions, 22 deletions
diff --git a/templates/theme_template.scss b/templates/_styles.scss
index 5be3054..644aae3 100644
--- a/templates/theme_template.scss
+++ b/templates/_styles.scss
@@ -1,29 +1,9 @@
-/* =========================================== *
- * Template THEME
- * Version: 3.12.0
- * Author: You name here
- * Website: Your website here
- * Tweets Your twitter handle
- * =========================================== */
-
- // Change colors here and they will change everywhere.
-$base: #1C1C1C;
-$search: #000;
-$highlight: #2FBF71;
-$navigation: #fff;
-
-$text_color: #0d0d0d;
-$extra_color: #e6eaf0;
-$danger_color: #d62646;
-$warning_color: #ffaa00;
-
// ================================= \\
// ========== HORIZONTAL =========== \\
// ========== NAVIGATION =========== \\
// ============= BAR =============== \\
// ================================= \\
-
// Top Navigation BAR (horizontal)
.headerDesktop-container {
background-color: $base;
@@ -60,8 +40,8 @@ $warning_color: #ffaa00;
}
.navigation > li.active, .navigation > li:hover {
- box-shadow: 0 5px 0 0 $highlight inset;
-} // Navigation top color shadow
+ border-color: $highlight;
+} // Navigation items top border
.navigation-link {
color: $navigation;
@@ -319,6 +299,16 @@ p a {
color: $navigation;
}
+// Minimize, expand and close buttons.
+.pm_button.link.composerHeader-btn {
+ color: $navigation !important;
+}
+
+.pm_button.link.composerHeader-btn:hover {
+ color: $highlight !important;
+}
+
+
// ================================= \\
// =========== SETTINGS =========== \\
// ============ PANEL ============ \\
@@ -350,6 +340,7 @@ p a {
color: $highlight;
}
+
// Pill switch buttons.
.pm_toggle.off .off, .pm_toggle.on .on {
background: $base;
diff --git a/templates/blue_and_orange/blue_and_orange.scss b/templates/blue_and_orange/blue_and_orange.scss
new file mode 100644
index 0000000..d7986c0
--- /dev/null
+++ b/templates/blue_and_orange/blue_and_orange.scss
@@ -0,0 +1,20 @@
+/*! =========================================== *
+ * BLUE AND ORANGE THEME
+ * Version: 3.14.0
+ * Author: Cristiano Almeida
+ * Website: www.csalmeida.com
+ * Tweets @_csalmeida
+ * =========================================== */
+
+// Change colors here and they will change everywhere.
+$base: #0F4C5C;
+$search: #0A353F;
+$highlight: #ED7D3A;
+$navigation: #fff;
+
+$text_color: #0d0d0d;
+$extra_color: #e6eaf0;
+$danger_color: #d62646;
+$warning_color: #ffaa00;
+
+@import '../styles'; \ No newline at end of file
diff --git a/templates/dark_bubble_gum/dark_bubble_gum.scss b/templates/dark_bubble_gum/dark_bubble_gum.scss
new file mode 100644
index 0000000..0b01351
--- /dev/null
+++ b/templates/dark_bubble_gum/dark_bubble_gum.scss
@@ -0,0 +1,20 @@
+/*! =========================================== *
+ * DARK BUBBLE GUM THEME
+ * Version: 3.14.0
+ * Author: Cristiano Almeida
+ * Website: www.csalmeida.com
+ * Tweets @_csalmeida
+ * =========================================== */
+
+// Change colors here and they will change everywhere.
+$base: #1C1C1C;
+$search: #000;
+$highlight: #EF2D56;
+$navigation: #fff;
+
+$text_color: #0d0d0d;
+$extra_color: #e6eaf0;
+$danger_color: #d62646;
+$warning_color: #ffaa00;
+
+@import '../styles'; \ No newline at end of file
diff --git a/templates/green_lume/green_lume.scss b/templates/green_lume/green_lume.scss
new file mode 100644
index 0000000..2f72832
--- /dev/null
+++ b/templates/green_lume/green_lume.scss
@@ -0,0 +1,20 @@
+/*! =========================================== *
+ * GREEN LUME THEME
+ * Version: 3.14.0
+ * Author: Cristiano Almeida
+ * Website: www.csalmeida.com
+ * Tweets @_csalmeida
+ * =========================================== */
+
+// Change colors here and they will change everywhere.
+$base: #1C1C1C;
+$search: #000;
+$highlight: #2FBF71;
+$navigation: #fff;
+
+$text_color: #0d0d0d;
+$extra_color: #e6eaf0;
+$danger_color: #d62646;
+$warning_color: #ffaa00;
+
+@import '../styles'; \ No newline at end of file
diff --git a/templates/monokai/monokai.scss b/templates/monokai/monokai.scss
new file mode 100644
index 0000000..75802da
--- /dev/null
+++ b/templates/monokai/monokai.scss
@@ -0,0 +1,20 @@
+/*! =========================================== *
+ * MONOKAI THEME
+ * Version: 3.14.0
+ * Author: tripscripts
+ * Website: N/A
+ * Tweets N/A
+ * =========================================== */
+
+// Change colors here and they will change everywhere.
+$base: #1D1E1A;
+$search: #5B26D6;
+$highlight: #89C62A;
+$navigation: #FFF;
+
+$text_color: #0d0d0d;
+$extra_color: #e6eaf0;
+$danger_color: #d62646;
+$warning_color: #ffaa00;
+
+@import '../styles'; \ No newline at end of file
diff --git a/templates/theme_example/theme_example.scss b/templates/theme_example/theme_example.scss
new file mode 100644
index 0000000..0457e40
--- /dev/null
+++ b/templates/theme_example/theme_example.scss
@@ -0,0 +1,20 @@
+/*! =========================================== *
+ * Template THEME
+ * Version: 3.12.0
+ * Author: You name here
+ * Website: Your website here
+ * Tweets Your twitter handle
+ * =========================================== */
+
+// Change colors here and they will change everywhere.
+$base: #1C1C1C;
+$search: #000;
+$highlight: #2FBF71;
+$navigation: #fff;
+
+$text_color: #0d0d0d;
+$extra_color: #e6eaf0;
+$danger_color: #d62646;
+$warning_color: #ffaa00;
+
+@import '../styles'; \ No newline at end of file
diff --git a/templates/vitamin_c/vitamin_c.scss b/templates/vitamin_c/vitamin_c.scss
new file mode 100644
index 0000000..0bb395d
--- /dev/null
+++ b/templates/vitamin_c/vitamin_c.scss
@@ -0,0 +1,20 @@
+/*! =========================================== *
+ * VITAMIN C THEME
+ * Version: 3.14.0
+ * Author: Cristiano Almeida
+ * Website: www.csalmeida.com
+ * Tweets @_csalmeida
+ * =========================================== */
+
+// Change colors here and they will change everywhere.
+$base: #004358;
+$search: #1F8A70;
+$highlight: #FD7400;
+$navigation: #FFE11A;
+
+$text_color: #0d0d0d;
+$extra_color: #e6eaf0;
+$danger_color: #d62646;
+$warning_color: #ffaa00;
+
+@import '../styles'; \ No newline at end of file