-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80bcf00
commit 5516592
Showing
3 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,12 @@ jobs: | |
name: Publish Logseq graph | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: logseq/[email protected].0 | ||
- uses: logseq/[email protected].1 | ||
with: | ||
theme-mode: dark | ||
accent-color: grass | ||
theme-mode: light | ||
accent-color: tomato | ||
output-directory: build | ||
version: 0.10.9 | ||
- name: Add a nojekyll file # to make sure asset paths are correctly identified | ||
run: touch $GITHUB_WORKSPACE/build/.nojekyll | ||
- name: Replace logo file | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
.dark { | ||
--ls-main-content-background: black; | ||
|
||
/* --rx-green-09: #30a46c; */ | ||
/* --rx-green-10: #3cb179; */ | ||
/* --rx-green-11: #4cc38a; */ | ||
} | ||
|
||
html body { | ||
background-color: black; | ||
} | ||
|
||
.dark #app-container, | ||
.dark .left-sidebar-inner { | ||
background-color: black !important; | ||
} | ||
|
||
#right-sidebar .cp__right-sidebar-topbar { | ||
background-color: black !important; | ||
} | ||
|
||
#right-sidebar-container { | ||
background-color: black !important; | ||
} | ||
|
||
.dark .sidebar-item-list, | ||
.dark .sidebar-item { | ||
background-color: black !important; | ||
} | ||
|
||
#logseq-tabs_lsp_main { | ||
background-color: black !important; | ||
} |