summaryrefslogtreecommitdiff
path: root/gruvbox.css
diff options
context:
space:
mode:
Diffstat (limited to 'gruvbox.css')
-rw-r--r--gruvbox.css93
1 files changed, 93 insertions, 0 deletions
diff --git a/gruvbox.css b/gruvbox.css
new file mode 100644
index 0000000..cf98bac
--- /dev/null
+++ b/gruvbox.css
@@ -0,0 +1,93 @@
+/* ===== Gruvbox Theme for cgit ===== */
+
+body {
+ background: #282828;
+ color: #ebdbb2;
+ font-family: monospace;
+ margin: 0;
+}
+
+#header {
+ border-bottom: 1px solid #3c3836;
+ padding-bottom: 6px;
+}
+
+#header a {
+ color: #fabd2f;
+}
+
+#header h1 {
+ color: #fbf1c7;
+}
+
+.tabs a {
+ background: #3c3836;
+ color: #ebdbb2;
+ padding: 4px 10px;
+ border-radius: 4px;
+}
+
+.tabs a.active {
+ background: #458588;
+ color: #fbf1c7;
+}
+
+table {
+ width: auto;
+}
+
+th {
+ background: #3c3836;
+ color: #fbf1c7;
+}
+
+td {
+ border-top: 1px solid #3c3836;
+}
+
+a {
+ color: #83a598;
+ text-decoration: none;
+}
+
+a:hover {
+ color: #fabd2f;
+}
+
+pre {
+ background: #1d2021;
+ padding: 10px;
+ border-radius: 6px;
+}
+
+.add {
+ background: #32361a;
+ color: #b8bb26;
+}
+
+.del {
+ background: #3c1f1e;
+ color: #fb4934;
+}
+
+.branch {
+ background: #b16286;
+ color: #fbf1c7;
+ padding: 2px 6px;
+ border-radius: 4px;
+}
+
+.head {
+ background: #d79921;
+ color: #282828;
+ padding: 2px 6px;
+ border-radius: 4px;
+}
+
+#footer {
+ margin-top: 40px;
+ padding-top: 10px;
+ border-top: 1px solid #3c3836;
+ font-size: 12px;
+ color: #a89984;
+}