summaryrefslogtreecommitdiffstats
path: root/assets/sass/themes.scss
diff options
context:
space:
mode:
authorSerghei Iakovlev <egrep@protonmail.ch>2022-07-22 00:31:29 +0200
committerSerghei Iakovlev <egrep@protonmail.ch>2022-07-22 00:31:29 +0200
commit303fd2b0324e0d34d96409fb38b4c202d0fe0332 (patch)
tree18b56b6b9a73ede4469417247f740fd4381b3adc /assets/sass/themes.scss
parentab789fc20396bb583835c1f47478c1f17039d39f (diff)
downloadgohugo-theme-ed-303fd2b0324e0d34d96409fb38b4c202d0fe0332.tar.gz
Optimize SCSS
Diffstat (limited to 'assets/sass/themes.scss')
-rw-r--r--assets/sass/themes.scss78
1 files changed, 78 insertions, 0 deletions
diff --git a/assets/sass/themes.scss b/assets/sass/themes.scss
new file mode 100644
index 0000000..c7edf60
--- /dev/null
+++ b/assets/sass/themes.scss
@@ -0,0 +1,78 @@
+/* Themes */
+
+/* Red */
+.theme-base-red {
+ .post-tags a {
+ background: #ac4142;
+
+ &:before {
+ border-color: transparent #ac4142 transparent transparent;
+ }
+ }
+}
+
+/* Orange */
+.theme-base-orange {
+ .post-tags a {
+ background: #d28445;
+
+ &:before {
+ border-color: transparent #d28445 transparent transparent;
+ }
+ }
+}
+
+/* Green */
+.theme-base-green {
+ .post-tags a {
+ background: #90a959;
+
+ &:before {
+ border-color: transparent #90a959 transparent transparent;
+ }
+ }
+}
+
+/* Cyan */
+.theme-base-cyan {
+ .post-tags a {
+ background: #75b5aa;
+
+ &:before {
+ border-color: transparent #75b5aa transparent transparent;
+ }
+ }
+}
+
+/* Blue */
+.theme-base-blue {
+ .post-tags a {
+ background: #6a9fb5;
+
+ &:before {
+ border-color: transparent #6a9fb5 transparent transparent;
+ }
+ }
+}
+
+/* Magenta */
+.theme-base-magenta {
+ .post-tags a {
+ background: #aa759f;
+
+ &:before {
+ border-color: transparent #aa759f transparent transparent;
+ }
+ }
+}
+
+/* Brown */
+.theme-base-brown {
+ .post-tags a {
+ background: #8f5536;
+
+ &:before {
+ border-color: transparent #8f5536 transparent transparent;
+ }
+ }
+}