Skip to content

Commit 2a36a4a

Browse files
authored
Set default value for 'todo' admonition color across all themes (#2664)
1 parent dbd2a8f commit 2a36a4a

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
* Now the cursor remain focused on search box even after selecting the filter. ([#2410])
1111

12+
## Fixed
13+
14+
* Don't require custom themes to set a color for the 'todo' admonition. ([#2576])
15+
16+
1217
## Version [v1.9.0] - 2025-03-17
1318

1419
### Added
@@ -1964,6 +1969,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
19641969
[#2566]: https://github.com/JuliaDocs/Documenter.jl/issues/2566
19651970
[#2569]: https://github.com/JuliaDocs/Documenter.jl/issues/2569
19661971
[#2571]: https://github.com/JuliaDocs/Documenter.jl/issues/2571
1972+
[#2576]: https://github.com/JuliaDocs/Documenter.jl/issues/2576
19671973
[#2577]: https://github.com/JuliaDocs/Documenter.jl/issues/2577
19681974
[#2592]: https://github.com/JuliaDocs/Documenter.jl/issues/2592
19691975
[#2593]: https://github.com/JuliaDocs/Documenter.jl/issues/2593

assets/html/scss/bulma/utilities/derived-variables.sass

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ $info: $cyan !default
77
$success: $green !default
88
$warning: $yellow !default
99
$danger: $red !default
10+
$compat: $turquoise !default
11+
$todo: $purple !default
1012

1113
$light: $white-ter !default
1214
$dark: $grey-darker !default

assets/html/scss/documenter/_variables.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ $blue: #3c5dcd !default;
1515
$purple: #9558b2 !default;
1616

1717
$link: #2e63b8 !default;
18-
$compat: $turquoise !default;
1918
$text: #222222 !default;
2019
$text-strong: $text !default;
2120
$code: #000000 !default;

0 commit comments

Comments
 (0)