Skip to content
This repository was archived by the owner on Oct 31, 2025. It is now read-only.

Commit 89d6d85

Browse files
author
Sujaykumar Hublikar
committed
update color scheme
1 parent 54d5fc1 commit 89d6d85

File tree

2 files changed

+31
-10
lines changed

2 files changed

+31
-10
lines changed

README.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,29 @@ Example:
7474
</script>
7575
```
7676
77+
**Colors**
78+
79+
set `a` link colors set `--primary` & `--primary-dark` in `:root`
80+
81+
* `--primary` is used default link color
82+
83+
* `--primary-dark` is used when link:hover
84+
85+
Example:
86+
87+
```css
88+
...
89+
90+
91+
:root {
92+
--primary: #0f5d9c;
93+
--pirmary-dark: #0a4677;
94+
}
95+
96+
97+
...
98+
```
99+
77100
<br>
78101
79102
# 🛠️ Development

src/plugin.css

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@
1010
* Licensed under Apache License, Version 2.0
1111
*/
1212

13-
:root {
14-
--primary: #0f5d9c;
15-
--pirmary-dark: #0a4677;
16-
--pirmary-light: #348bd3;
17-
}
18-
1913
#customFooter{
2014
border-top: 1px solid #e5e5e5;
2115
padding-top: 2rem;
@@ -29,12 +23,16 @@
2923
float: right;
3024
}
3125

26+
#customFooter .copyright a{
27+
padding-left: 5px;
28+
}
29+
3230
#customFooter a{
33-
color: var(--primary) !important;
34-
text-decoration: underline dotted !important;
31+
color: var(--primary, #42b983);
32+
text-decoration: underline dotted;
3533
}
3634

3735
#customFooter a:hover{
38-
color: var(--primary-dark) !important;
39-
text-decoration: underline !important;
36+
color: var(--primary-dark, #2c7554);
37+
text-decoration: underline;
4038
}

0 commit comments

Comments
 (0)