Skip to content

Commit

Permalink
Remove custom Polar
Browse files Browse the repository at this point in the history
  • Loading branch information
brendanjohnharris committed Nov 22, 2023
1 parent c0b1bc8 commit 1b0ddde
Show file tree
Hide file tree
Showing 3 changed files with 605 additions and 622 deletions.
3 changes: 2 additions & 1 deletion src/Colors.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ const sunset = reverse(cgrad([crimson, juliapurple, cornflowerblue], [0, 0.65, 1
# const sunset = cgrad([RGB(c...) for c in eachrow(C)])
export sunset

const sunrise = cgrad([crimson, california, cucumber, cornflowerblue], [0.2, 0.4, 0.6, 0.8])
const sunrise = cgrad([crimson, california, cucumber, cornflowerblue],
[0.25, 0.4, 0.6, 0.75])
# C = EqualizeColorMap("RGB", C[0:0.001:1], "CIEDE2000", [1, 1, 1], 6)
# const sunrise = cgrad([RGB(c...) for c in eachrow(C)])
export sunrise
Expand Down
2 changes: 1 addition & 1 deletion src/Foresight.jl
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Produce a figure showcasing the current theme.
"""
function demofigure()
Random.seed!(32)
f = Figure(resolution = (720, 1080))
f = Figure(resolution = (1080, 720))
ax = Axis(f[1, 1], title = "measurements", xlabel = "time (s)", ylabel = "amplitude")
labels = ["alpha", "beta", "gamma", "delta", "epsilon", "zeta"]
for i in 1:6
Expand Down
Loading

0 comments on commit 1b0ddde

Please sign in to comment.