diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-08-01 16:49:14 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-08-01 16:49:14 +0200 |
commit | 27759b9f577bc6cfb7c663f1cc1340cdaa7f9b9d (patch) | |
tree | 52d17bda74b6708b420b8badf38cfe2d7a082491 /README.md | |
parent | 6a1216cad85f650c872c05eb051d9efd01e7168d (diff) |
better docstring and readme for custom theme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 26 |
1 files changed, 13 insertions, 13 deletions
@@ -143,21 +143,21 @@ You can also provide your own theme if you do not like syncing nor like the defa ```emacs-lisp (setq org-roam-ui-custom-theme (list - (bg . '#1E2029') - (bg-alt . '#282a36') - (fg . '#f8f8f2') - (fg-alt . '#6272a4') - (red . '#ff5555') - (orange . '#f1fa8c') - (yellow .'#ffb86c') - (green . '#50fa7b') - (cyan . '#8be9fd') - (blue . '#ff79c6') - (violet . '#8be9fd') - (magenta . '#bd93f9'))) + (bg . "#1E2029") + (bg-alt . "#282a36") + (fg . "#f8f8f2") + (fg-alt . "#6272a4") + (red . "#ff5555") + (orange . "#f1fa8c") + (yellow ."#ffb86c") + (green . "#50fa7b") + (cyan . "#8be9fd") + (blue . "#ff79c6") + (violet . "#8be9fd") + (magenta . "#bd93f9"))) ``` -You can optionally provide `(base1 . '#XXXXXX')` arguments after the last one to also set the background shades, otherwise ORUI will guess based on the provides bg and fg. +You can optionally provide `(base1 . "#XXXXXX")` arguments after the last one to also set the background shades, otherwise ORUI will guess based on the provides bg and fg. ## Disclaimers ‼ |