Skip to content

Commit eb78732

Browse files
committed
add crimson theme
1 parent bf26822 commit eb78732

File tree

8 files changed

+63
-0
lines changed

8 files changed

+63
-0
lines changed

Diff for: themes/crimson/css/custom.css

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
:root {
2+
--bg-color: hsl(348, 12%, 95%);
3+
--text-color: hsl(348, 35%, 25%);
4+
--color-primary: hsl(348, 83%, 47%);
5+
--outline-color: hsl(331, 100%, 72%);
6+
--button-bg: linear-gradient(to right, #e0e0e0, #bdbdbd);
7+
--button-bg-box-shadow-color: rgba(160, 160, 160, 0.5);
8+
--button-bg-primary: linear-gradient(to right, hsl(348, 89%, 63%), hsl(348, 83%, 47%));
9+
--button-bg-primary-box-shadow-color: hsla(350, 90%, 61%, 0.5);
10+
--button-bg-secondary: linear-gradient(to right, hsl(257, 50%, 49%), hsl(257, 69%, 38%));
11+
--button-bg-secondary-box-shadow-color: hsla(250, 58%, 42%, 0.5);
12+
--button-action-shadow-color: hsla(348, 15%, 60%, 0.12);
13+
--underline-color: hsl(348, 35%, 65%);
14+
--secondary-text-color: hsl(348, 14%, 60%);
15+
--send-icon-hover-color: hsl(257, 69%, 38%);
16+
--send-spinner-icon-color: hsl(257, 15%, 70%);
17+
--copy-icon-color: hsl(43, 85%, 50%);
18+
--copy-icon-bg-color: hsl(43, 100%, 91%);
19+
--copy-icon-shadow-color: hsla(348, 15%, 60%, 0.12);
20+
--focus-outline-color: hsla(356, 90%, 61%, 0.5);
21+
--checkbox-bg-color: hsl(257, 57%, 57%);
22+
--input-shadow-color: hsla(348, 15%, 70%, 0.2);
23+
--input-hover-shadow-color: hsla(348, 15%, 70%, 0.4);
24+
--input-label-color: hsl(348, 35%, 25%);
25+
--table-shadow-color: hsla(348, 20%, 70%, 0.3);
26+
--table-bg-color: hsl(348, 12%, 95%);
27+
--table-tr-border-color: hsl(348, 14%, 94%);
28+
--table-tr-hover-bg-color: hsl(348, 14%, 98%);
29+
--table-head-tr-border-color: hsl(348, 14%, 90%);
30+
--table-status-gray-bg-color: hsl(348, 12%, 95%);
31+
}
32+
33+
a.button.action.stats,
34+
button.action.stats {
35+
background: #f1ecff;
36+
}
37+
38+
a.button.action.stats svg,
39+
button.action.stats svg {
40+
stroke-width: 2.5;
41+
stroke: #7c5fc5;
42+
}

Diff for: themes/crimson/images/card.png

11.9 KB
Loading

Diff for: themes/crimson/images/favicon-16x16.png

2.05 KB
Loading

Diff for: themes/crimson/images/favicon-196x196.png

14.2 KB
Loading

Diff for: themes/crimson/images/favicon-32x32.png

2.66 KB
Loading

Diff for: themes/crimson/images/favicon.ico

15 KB
Binary file not shown.

Diff for: themes/crimson/images/logo.png

2.09 KB
Loading

Diff for: themes/crimson/views/partials/footer.hbs

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<footer>
2+
<p>
3+
4+
Powered by <a href="https://github.com/thedevs-network/kutt" title="The Devs" target="_blank" rel="noopener noreferrer">Kutt</a> <span>|</span>
5+
6+
<a href="#" title="Custom link 1">Custom link 1</a> <span>|</span>
7+
8+
<a href="#" title="Custom link 2">Custom link 2</a> <span>|</span>
9+
10+
<a href="/terms" title="Terms of Service">Terms of Service</a>
11+
12+
{{#if contact_email}}
13+
<span>|</span>
14+
<button class="link" hx-get="/get-support-email" hx-swap="outerHTML">
15+
<span>{{> icons/spinner}}</span>
16+
Contact us
17+
</button>
18+
{{/if}}
19+
20+
</p>
21+
</footer>

0 commit comments

Comments
 (0)