[geany/www.geany.org] 62608c: Add another color style variant
Enrico Tröger
git-noreply at xxxxx
Sat Jun 1 10:59:12 UTC 2019
Branch: refs/heads/color-fun
Author: Enrico Tröger <enrico.troeger at uvena.de>
Committer: Enrico Tröger <enrico.troeger at uvena.de>
Date: Sat, 01 Jun 2019 10:59:12 UTC
Commit: 62608c2bab3c83f3aa547d7c8fb518916c1d2413
https://github.com/geany/www.geany.org/commit/62608c2bab3c83f3aa547d7c8fb518916c1d2413
Log Message:
-----------
Add another color style variant
Modified Paths:
--------------
geany/static/css/geany-theme-yellow-gmail-inverted.css
geany/templates/skel.html
Modified: geany/static/css/geany-theme-yellow-gmail-inverted.css
41 lines changed, 41 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,41 @@
+/*
+ * Main link color: #D29300 rgb(210, 147, 0)
+ *
+ * Alternate color (borders, background, ...): #ffb302 rgb(255, 179, 2)
+ */
+
+/* buttons */
+.btn-primary {
+ background-color: rgb(255, 179, 2);
+ border-color: rgb(210, 147, 0);
+ color: rgb(0, 0, 0);
+}
+.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
+ background-color: rgb(210, 147, 0);
+ border-color: rgb(255, 179, 2);
+ color: rgb(0, 0, 0);
+}
+
+/* links */
+a {
+ color: rgb(255, 179, 2);
+}
+a:hover, a:focus {
+ color: rgb(210, 147, 0);
+}
+a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
+ border-color: rgb(210, 147, 0);
+}
+
+/* code block*/
+code {
+ color: rgb(255, 179, 2);
+}
+pre {
+ color: rgb(255, 179, 2);
+}
+
+/* homepage icons */
+.feature-icon span {
+ background-color: rgb(210, 147, 0);
+}
Modified: geany/templates/skel.html
2 lines changed, 2 insertions(+), 0 deletions(-)
===================================================================
@@ -37,6 +37,7 @@
<link rel="alternate stylesheet" href="{% static "css/geany-theme-yellow-b4n.css" %}" title="yellow-b4n">
<link rel="alternate stylesheet" href="{% static "css/geany-theme-yellow-eht16.css" %}" title="yellow-eht16">
<link rel="alternate stylesheet" href="{% static "css/geany-theme-yellow-gmail.css" %}" title="yellow-gmail">
+<link rel="alternate stylesheet" href="{% static "css/geany-theme-yellow-gmail-inverted.css" %}" title="yellow-gmail-inverted">
{% endblock %}
</head>
@@ -87,6 +88,7 @@
<li><a data-stylesheet="{% static "css/geany-theme-yellow-b4n.css" %}">b4n's yellow</a></li>
<li><a data-stylesheet="{% static "css/geany-theme-yellow-eht16.css" %}">eht16's yellow</a></li>
<li><a data-stylesheet="{% static "css/geany-theme-yellow-gmail.css" %}">gmail's yellow</a></li>
+ <li><a data-stylesheet="{% static "css/geany-theme-yellow-gmail-inverted.css" %}">gmail's yellow (inverted)</a></li>
</ul>
</li>
<!-- end color fun -->
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Commits
mailing list