Skip to content

Commit f65dc3c

Browse files
Fe-r-ozKrastanov
andauthored
fix: RGB color initialization in QuantumCliffordMakieExt colormap (#473)
Co-authored-by: Stefan Krastanov <[email protected]>
1 parent 0d13791 commit f65dc3c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ext/QuantumCliffordMakieExt/QuantumCliffordMakieExt.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ Makie.@recipe(
1717
function (scene)
1818
Makie.Theme(;
1919
xzcomponents = :together,
20-
colormap = Makie.cgrad([:lightgray,Makie.RGB(0x1b9e77),Makie.RGB(0xd95f02),Makie.RGB(0x7570b3)], 4, categorical = true),
20+
colormap = Makie.cgrad([
21+
:lightgray,
22+
Makie.RGB(27/255, 158/255, 119/255),
23+
Makie.RGB(217/255, 95/255, 2/255),
24+
Makie.RGB(117/255, 112/255, 179/255)
25+
], 4, categorical = true),
2126
colorrange = (-0.5, 3.5)
2227
)
2328
end,

0 commit comments

Comments
 (0)