Skip to content

Commit

Permalink
added more colorful headers
Browse files Browse the repository at this point in the history
  • Loading branch information
devleaks committed Mar 25, 2024
1 parent e60dbcf commit 908f6d7
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
40 changes: 40 additions & 0 deletions docs/theme/assets/css/dracula-colors.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/* Devleaks personal preference for heading and emphasis
* (matches some Obsidian Dracula Theme)
*
* Last updated: 25-MAR-2024
*
*/
.md-typeset strong {
color: RGB(255, 184, 108);
}
.md-typeset em {
font-weight: bolder;
color: RGB(80, 250, 123);
}
.md-typeset i {
color: RGB(80, 250, 123);
}
.md-typeset b {
color: rgb(255, 202, 128);
}
.md-typeset del {
color: rgb(255, 149, 128);
}
.md-typeset h1 {
color: RGB(189, 147, 249);
}
.md-typeset h2 {
color: RGB(255, 184, 108);
}
.md-typeset h3 {
color: RGB(80, 250, 123);
}
.md-typeset h4 {
color: RGB(255, 85, 85);
}
.md-typeset h5 {
color: RGB(241, 250, 140) !important;
}
.md-typeset h6 {
color: RGB(139, 233, 253);
}
3 changes: 3 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -202,3 +202,6 @@ plugins:

extra_javascript:
- https://unpkg.com/mermaid/dist/mermaid.min.js

extra_css:
- theme/assets/css/dracula-colors.css

0 comments on commit 908f6d7

Please sign in to comment.