Skip to content

Commit

Permalink
🔖 0.7.20
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 14, 2023
1 parent a31cd07 commit 2c1ecc0
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 15 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [0.7.20](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.7.19...0.7.20)

- 🐛 Secondary rgb value for light mode. Resolves #76 [`#76`](https://github.com/ebullient/obsidian-theme-ebullientworks/issues/76)
- 🎨 Subtle folder note underlines [`ac4b4b9`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/ac4b4b9500dfe94982e5efd77021d5b7844c8a8d)
- 🎨 default select/focus css [`bab338c`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/bab338cf8499ef6e45c6c23f4d46ab5703ff6224)

#### [0.7.19](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.7.18...0.7.19)

> 7 December 2023
- 🐛 Fix § section/collapse indicators [`cca1dfb`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/cca1dfb37f5067d2a8bd36976cfbf097eaae859e)

#### [0.7.18](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.7.16...0.7.18)
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Ebullientworks",
"version": "0.7.19",
"version": "0.7.20",
"minAppVersion": "0.16.0",
"author": "Ebullientworks",
"authorUrl": "https://github.com/ebullient",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-theme-ebullientworks",
"version": "0.7.19",
"version": "0.7.20",
"private": true,
"description": "An Obsidian Theme",
"author": "Erin Schnabel",
Expand Down
3 changes: 2 additions & 1 deletion publish.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*
Ebullientworks 0.7.19. A dark and light theme for Obsidian.
Ebullientworks 0.7.20. A dark and light theme for Obsidian.
https://github.com/ebullient/obsidian-theme-ebullientworks
*/
Expand Down Expand Up @@ -134,6 +134,7 @@ body {
--secondary-accent-5: var(--green-5);
--secondary-accent-6: var(--green-6);
--secondary-accent-1-rgb: var(--green-1-rgb);
--secondary-accent-4-rgb: var(--green-4-rgb);
}

body {
Expand Down
2 changes: 1 addition & 1 deletion tasks-snippet.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*
Ebullientworks 0.7.19. A dark and light theme for Obsidian.
Ebullientworks 0.7.20. A dark and light theme for Obsidian.
https://github.com/ebullient/obsidian-theme-ebullientworks
*/
Expand Down
21 changes: 12 additions & 9 deletions theme.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*
Ebullientworks 0.7.19. A dark and light theme for Obsidian.
Ebullientworks 0.7.20. A dark and light theme for Obsidian.
https://github.com/ebullient/obsidian-theme-ebullientworks
*/
Expand Down Expand Up @@ -296,6 +296,7 @@ body {
--secondary-accent-5: var(--green-5);
--secondary-accent-6: var(--green-6);
--secondary-accent-1-rgb: var(--green-1-rgb);
--secondary-accent-4-rgb: var(--green-4-rgb);
}

.primary-accent-red {
Expand Down Expand Up @@ -936,12 +937,6 @@ body.is-tablet .view-header .view-action,
--interactive-accent: var(--interactive-accent-hover);
}

select:focus,
.dropdown:focus {
box-shadow: 0 0 0 0.0625rem var(--background-modifier-border-focus);
outline: none;
}

.theme-dark {
--graph-line: var(--gray-dark-5);
--graph-node: var(--primary-accent-4);
Expand Down Expand Up @@ -1669,8 +1664,7 @@ div.CodeMirror.cm-s-obsidian span.cm-highlight.CodeMirror-selectedtext {
--text-selection: var(--text-highlight-bg-active);
}

.markdown-source-view.mod-cm6 .cm-selection,
::selection {
.ebw-test-select {
background-color: var(--text-selection);
}

Expand Down Expand Up @@ -2654,6 +2648,15 @@ li .internal-embed .markdown-embed-content {
background-color: var(--day-planner-timeline-fg);
}

.folder-note-underline-path .has-folder-note.view-header-breadcrumb,
.folder-note-underline .has-folder-note .nav-folder-title-content {
text-decoration-line: underline;
text-decoration-style: dotted;
text-decoration-color: var(--color-base-40);
text-decoration-thickness: 1px;
text-underline-offset: 2px;
}

.mod-cta .setting-item-description,
.mod-cta .setting-item-name {
color: var(--text-on-accent);
Expand Down

0 comments on commit 2c1ecc0

Please sign in to comment.