Doom-One Theme implementation

Hi all

Here’s my implementation of the Doom One color scheme.
Initially, I didn’t use CSS variables, so you may need to make some manual adjustments if your instance relies on variables I haven’t defined.
This setup is primarily intended for dark mode.

https://github.com/MatthiasBenaets/silverbullet-library/tree/master/Styles

Feel free to use it.
Hope you enjoy!

11 Likes

Thanks for sharing. I love the darks themes with pastels colors.

This one is great! I loved the looks of doom emacs :smiley:

@MatthiasBenaets I can see that you also use the mermaid.js plug.
Do you know how to switch its theme to dark one in v2?
It looks terrible with the dark SB and light boxes…

---
config:
  theme: dark
---
flowchart TD
  A[Darkmode Problem] --> B[Frontmatter Config]
  B[Frontmatter Config] --> C[Solved]

Not sure if it can be set application wide, but you can always just write a template.

Edit: Even better, customize it using the doom theme:

---
tags: meta/template/slash
description: Doom diagram
---
```mermaid
---
config:
  theme: base
  themevariables:
    primarycolor: '#a9a1e150'
    primarytextcolor: '#bbc2cf'
    primarybordercolor: '#c678dd'
    linecolor: '#c678dd'
---
|^|
```
2 Likes

Thanks! This will help a lot!