Skip to content

Commit f21ddae

Browse files
committed
v3.17.0
1 parent 88ad30e commit f21ddae

File tree

8 files changed

+372
-2
lines changed

8 files changed

+372
-2
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [v3.17] - 2022-02-08
4+
5+
### Added
6+
7+
- added misc Julia colors (thanks @davibarreira)
8+
- added fastie/NDVI (thanks @lazarusA)
9+
- added nordtheme (thanks Stefano Meschiari)
10+
11+
## Changed
12+
13+
### Removed
14+
15+
### Deprecated
16+
17+
###################################################################
318
## [v3.16] - 2022-01-11
419

520
### Added

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name = "ColorSchemes"
22
uuid = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
33
authors = ["cormullion", "rafaqz", "gustaphe", "lwabeke", "NHDaly"]
4-
version = "3.16"
4+
version = "3.17.0"
55

66
[deps]
77
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
88
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
99
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
10+
Luxor = "ae8d54c2-7ccd-5906-9d76-62fc9837b5bc"
1011
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1112

1213
[compat]

data/fastie.jl

Lines changed: 304 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,304 @@
1+
#=
2+
3+
https://publiclab.org/notes/cfastie/08-26-2014/new-ndvi-colormap
4+
5+
This new colormap has several useful features (for about 90%
6+
of us).
7+
8+
ColorSchemes's values are [0..1], the following description
9+
talks about values in the range [-1..+1].
10+
11+
1 The left half of the colormap has three gradients between
12+
black and white. This does not allow you to discern the
13+
value from the tone, but the values of NDVI below zero
14+
indicate zero photosynthesis, so we generally do not care
15+
exactly what the value is. The multiple gradients preserve
16+
the detail of non-plants in the NDVI image. It just makes
17+
the NDVI image easier to look at because you can recognize
18+
objects and textures that are not foliage.
19+
20+
2 The boundary between grayscale and color is not at zero.
21+
Live foliage generally does not have NDVI values below 0.1,
22+
so that is the boundary between grayscale and color. With
23+
this colormap, anything in grayscale is probably not a
24+
plant. This allows a more precise differentiation between
25+
plant and non-plant when the NDVI values are calibrated.
26+
27+
3 There is a narrow band of violet between 0.1 and 0.2 which
28+
could represent very low photosynthetic activity, but might
29+
also be noise or error.
30+
31+
4 The primary gradient of photosynthetic activity is from
32+
NDVI values from 0.2 to 0.9, and that is represented with a
33+
classic heat map from green to yellow to red. It's a little
34+
bit counter intuitive because green does not represent the
35+
healthiest plants, but the heat map metaphor seems to work
36+
well for most people.
37+
38+
5 The highest values (> 0.9) are colored magenta. Foliage
39+
generally does not have NDVI values this high, so this color
40+
represents non-plants. I did not make it a gray so it can be
41+
distinguished from low values. In many cases, DIY NDVI
42+
values above 0.9 are artifacts where the image is very dark
43+
or very bright.
44+
45+
=#
46+
47+
loadcolorscheme(:fastie, [
48+
RGB(1.0, 1.0, 1.0),
49+
RGB(0.9803921568627451, 0.9803921568627451, 0.9803921568627451),
50+
RGB(0.9647058823529412, 0.9647058823529412, 0.9647058823529412),
51+
RGB(0.9490196078431372, 0.9490196078431372, 0.9490196078431372),
52+
RGB(0.9333333333333333, 0.9333333333333333, 0.9333333333333333),
53+
RGB(0.9137254901960784, 0.9137254901960784, 0.9137254901960784),
54+
RGB(0.8980392156862745, 0.8980392156862745, 0.8980392156862745),
55+
RGB(0.8823529411764706, 0.8823529411764706, 0.8823529411764706),
56+
RGB(0.8666666666666667, 0.8666666666666667, 0.8666666666666667),
57+
RGB(0.8470588235294118, 0.8470588235294118, 0.8470588235294118),
58+
RGB(0.8313725490196079, 0.8313725490196079, 0.8313725490196079),
59+
RGB(0.8156862745098039, 0.8156862745098039, 0.8156862745098039),
60+
RGB(0.8, 0.8, 0.8),
61+
RGB(0.7843137254901961, 0.7843137254901961, 0.7843137254901961),
62+
RGB(0.7647058823529411, 0.7647058823529411, 0.7647058823529411),
63+
RGB(0.7490196078431373, 0.7490196078431373, 0.7490196078431373),
64+
RGB(0.7333333333333333, 0.7333333333333333, 0.7333333333333333),
65+
RGB(0.7176470588235294, 0.7176470588235294, 0.7176470588235294),
66+
RGB(0.6980392156862745, 0.6980392156862745, 0.6980392156862745),
67+
RGB(0.6823529411764706, 0.6823529411764706, 0.6823529411764706),
68+
RGB(0.6666666666666666, 0.6666666666666666, 0.6666666666666666),
69+
RGB(0.6509803921568628, 0.6509803921568628, 0.6509803921568628),
70+
RGB(0.6313725490196078, 0.6313725490196078, 0.6313725490196078),
71+
RGB(0.615686274509804, 0.615686274509804, 0.615686274509804),
72+
RGB(0.6, 0.6, 0.6),
73+
RGB(0.5843137254901961, 0.5843137254901961, 0.5843137254901961),
74+
RGB(0.5686274509803921, 0.5686274509803921, 0.5686274509803921),
75+
RGB(0.5490196078431373, 0.5490196078431373, 0.5490196078431373),
76+
RGB(0.5333333333333333, 0.5333333333333333, 0.5333333333333333),
77+
RGB(0.5176470588235295, 0.5176470588235295, 0.5176470588235295),
78+
RGB(0.5019607843137255, 0.5019607843137255, 0.5019607843137255),
79+
RGB(0.4823529411764706, 0.4823529411764706, 0.4823529411764706),
80+
RGB(0.4666666666666667, 0.4666666666666667, 0.4666666666666667),
81+
RGB(0.45098039215686275, 0.45098039215686275, 0.45098039215686275),
82+
RGB(0.43529411764705883, 0.43529411764705883, 0.43529411764705883),
83+
RGB(0.41568627450980394, 0.41568627450980394, 0.41568627450980394),
84+
RGB(0.4, 0.4, 0.4),
85+
RGB(0.3843137254901961, 0.3843137254901961, 0.3843137254901961),
86+
RGB(0.3686274509803922, 0.3686274509803922, 0.3686274509803922),
87+
RGB(0.35294117647058826, 0.35294117647058826, 0.35294117647058826),
88+
RGB(0.3333333333333333, 0.3333333333333333, 0.3333333333333333),
89+
RGB(0.3176470588235294, 0.3176470588235294, 0.3176470588235294),
90+
RGB(0.30196078431372547, 0.30196078431372547, 0.30196078431372547),
91+
RGB(0.28627450980392155, 0.28627450980392155, 0.28627450980392155),
92+
RGB(0.26666666666666666, 0.26666666666666666, 0.26666666666666666),
93+
RGB(0.25098039215686274, 0.25098039215686274, 0.25098039215686274),
94+
RGB(0.23529411764705882, 0.23529411764705882, 0.23529411764705882),
95+
RGB(0.2196078431372549, 0.2196078431372549, 0.2196078431372549),
96+
RGB(0.20392156862745098, 0.20392156862745098, 0.20392156862745098),
97+
RGB(0.2196078431372549, 0.2196078431372549, 0.2196078431372549),
98+
RGB(0.23529411764705882, 0.23529411764705882, 0.23529411764705882),
99+
RGB(0.25098039215686274, 0.25098039215686274, 0.25098039215686274),
100+
RGB(0.26666666666666666, 0.26666666666666666, 0.26666666666666666),
101+
RGB(0.28627450980392155, 0.28627450980392155, 0.28627450980392155),
102+
RGB(0.30196078431372547, 0.30196078431372547, 0.30196078431372547),
103+
RGB(0.3176470588235294, 0.3176470588235294, 0.3176470588235294),
104+
RGB(0.3333333333333333, 0.3333333333333333, 0.3333333333333333),
105+
RGB(0.35294117647058826, 0.35294117647058826, 0.35294117647058826),
106+
RGB(0.3686274509803922, 0.3686274509803922, 0.3686274509803922),
107+
RGB(0.3843137254901961, 0.3843137254901961, 0.3843137254901961),
108+
RGB(0.4, 0.4, 0.4),
109+
RGB(0.41568627450980394, 0.41568627450980394, 0.41568627450980394),
110+
RGB(0.43529411764705883, 0.43529411764705883, 0.43529411764705883),
111+
RGB(0.45098039215686275, 0.45098039215686275, 0.45098039215686275),
112+
RGB(0.4666666666666667, 0.4666666666666667, 0.4666666666666667),
113+
RGB(0.4823529411764706, 0.4823529411764706, 0.4823529411764706),
114+
RGB(0.5019607843137255, 0.5019607843137255, 0.5019607843137255),
115+
RGB(0.5176470588235295, 0.5176470588235295, 0.5176470588235295),
116+
RGB(0.5333333333333333, 0.5333333333333333, 0.5333333333333333),
117+
RGB(0.5490196078431373, 0.5490196078431373, 0.5490196078431373),
118+
RGB(0.5686274509803921, 0.5686274509803921, 0.5686274509803921),
119+
RGB(0.5843137254901961, 0.5843137254901961, 0.5843137254901961),
120+
RGB(0.6, 0.6, 0.6),
121+
RGB(0.615686274509804, 0.615686274509804, 0.615686274509804),
122+
RGB(0.6313725490196078, 0.6313725490196078, 0.6313725490196078),
123+
RGB(0.6509803921568628, 0.6509803921568628, 0.6509803921568628),
124+
RGB(0.6666666666666666, 0.6666666666666666, 0.6666666666666666),
125+
RGB(0.6823529411764706, 0.6823529411764706, 0.6823529411764706),
126+
RGB(0.6980392156862745, 0.6980392156862745, 0.6980392156862745),
127+
RGB(0.7176470588235294, 0.7176470588235294, 0.7176470588235294),
128+
RGB(0.7333333333333333, 0.7333333333333333, 0.7333333333333333),
129+
RGB(0.7490196078431373, 0.7490196078431373, 0.7490196078431373),
130+
RGB(0.7647058823529411, 0.7647058823529411, 0.7647058823529411),
131+
RGB(0.7843137254901961, 0.7843137254901961, 0.7843137254901961),
132+
RGB(0.8, 0.8, 0.8),
133+
RGB(0.8156862745098039, 0.8156862745098039, 0.8156862745098039),
134+
RGB(0.8313725490196079, 0.8313725490196079, 0.8313725490196079),
135+
RGB(0.8470588235294118, 0.8470588235294118, 0.8470588235294118),
136+
RGB(0.8666666666666667, 0.8666666666666667, 0.8666666666666667),
137+
RGB(0.8823529411764706, 0.8823529411764706, 0.8823529411764706),
138+
RGB(0.8980392156862745, 0.8980392156862745, 0.8980392156862745),
139+
RGB(0.9137254901960784, 0.9137254901960784, 0.9137254901960784),
140+
RGB(0.9333333333333333, 0.9333333333333333, 0.9333333333333333),
141+
RGB(0.9490196078431372, 0.9490196078431372, 0.9490196078431372),
142+
RGB(0.9647058823529412, 0.9647058823529412, 0.9647058823529412),
143+
RGB(0.9803921568627451, 0.9803921568627451, 0.9803921568627451),
144+
RGB(1.0, 1.0, 1.0),
145+
RGB(0.9803921568627451, 0.9803921568627451, 0.9803921568627451),
146+
RGB(0.9607843137254902, 0.9607843137254902, 0.9607843137254902),
147+
RGB(0.9411764705882353, 0.9411764705882353, 0.9411764705882353),
148+
RGB(0.9215686274509803, 0.9215686274509803, 0.9215686274509803),
149+
RGB(0.9019607843137255, 0.9019607843137255, 0.9019607843137255),
150+
RGB(0.8823529411764706, 0.8823529411764706, 0.8823529411764706),
151+
RGB(0.8627450980392157, 0.8627450980392157, 0.8627450980392157),
152+
RGB(0.8431372549019608, 0.8431372549019608, 0.8431372549019608),
153+
RGB(0.8235294117647058, 0.8235294117647058, 0.8235294117647058),
154+
RGB(0.803921568627451, 0.803921568627451, 0.803921568627451),
155+
RGB(0.7843137254901961, 0.7843137254901961, 0.7843137254901961),
156+
RGB(0.7647058823529411, 0.7647058823529411, 0.7647058823529411),
157+
RGB(0.7450980392156863, 0.7450980392156863, 0.7450980392156863),
158+
RGB(0.7254901960784313, 0.7254901960784313, 0.7254901960784313),
159+
RGB(0.7058823529411765, 0.7058823529411765, 0.7058823529411765),
160+
RGB(0.6862745098039216, 0.6862745098039216, 0.6862745098039216),
161+
RGB(0.6666666666666666, 0.6666666666666666, 0.6666666666666666),
162+
RGB(0.6470588235294118, 0.6470588235294118, 0.6470588235294118),
163+
RGB(0.6274509803921569, 0.6274509803921569, 0.6274509803921569),
164+
RGB(0.6078431372549019, 0.6078431372549019, 0.6078431372549019),
165+
RGB(0.592156862745098, 0.592156862745098, 0.592156862745098),
166+
RGB(0.5725490196078431, 0.5725490196078431, 0.5725490196078431),
167+
RGB(0.5529411764705883, 0.5529411764705883, 0.5529411764705883),
168+
RGB(0.5333333333333333, 0.5333333333333333, 0.5333333333333333),
169+
RGB(0.5137254901960784, 0.5137254901960784, 0.5137254901960784),
170+
RGB(0.49411764705882355, 0.49411764705882355, 0.49411764705882355),
171+
RGB(0.4745098039215686, 0.4745098039215686, 0.4745098039215686),
172+
RGB(0.4549019607843137, 0.4549019607843137, 0.4549019607843137),
173+
RGB(0.43529411764705883, 0.43529411764705883, 0.43529411764705883),
174+
RGB(0.41568627450980394, 0.41568627450980394, 0.41568627450980394),
175+
RGB(0.396078431372549, 0.396078431372549, 0.396078431372549),
176+
RGB(0.3764705882352941, 0.3764705882352941, 0.3764705882352941),
177+
RGB(0.3568627450980392, 0.3568627450980392, 0.3568627450980392),
178+
RGB(0.33725490196078434, 0.33725490196078434, 0.33725490196078434),
179+
RGB(0.3176470588235294, 0.3176470588235294, 0.3176470588235294),
180+
RGB(0.2980392156862745, 0.2980392156862745, 0.2980392156862745),
181+
RGB(0.2784313725490196, 0.2784313725490196, 0.2784313725490196),
182+
RGB(0.25882352941176473, 0.25882352941176473, 0.25882352941176473),
183+
RGB(0.23921568627450981, 0.23921568627450981, 0.23921568627450981),
184+
RGB(0.2196078431372549, 0.2196078431372549, 0.2196078431372549),
185+
RGB(0.25882352941176473, 0.25882352941176473, 0.3137254901960784),
186+
RGB(0.30196078431372547, 0.30196078431372547, 0.4117647058823529),
187+
RGB(0.3411764705882353, 0.3411764705882353, 0.5098039215686274),
188+
RGB(0.3843137254901961, 0.3843137254901961, 0.6078431372549019),
189+
RGB(0.4235294117647059, 0.4235294117647059, 0.7058823529411765),
190+
RGB(0.4666666666666667, 0.4666666666666667, 0.803921568627451),
191+
RGB(0.5058823529411764, 0.5058823529411764, 0.9019607843137255),
192+
RGB(0.5490196078431373, 0.5490196078431373, 1.0),
193+
RGB(0.5137254901960784, 0.5764705882352941, 0.9372549019607843),
194+
RGB(0.47843137254901963, 0.6039215686274509, 0.8745098039215686),
195+
RGB(0.44313725490196076, 0.6313725490196078, 0.8117647058823529),
196+
RGB(0.4117647058823529, 0.6588235294117647, 0.7490196078431373),
197+
RGB(0.3764705882352941, 0.6862745098039216, 0.6862745098039216),
198+
RGB(0.3411764705882353, 0.7176470588235294, 0.6235294117647059),
199+
RGB(0.3058823529411765, 0.7450980392156863, 0.5607843137254902),
200+
RGB(0.27450980392156865, 0.7725490196078432, 0.4980392156862745),
201+
RGB(0.23921568627450981, 0.8, 0.43529411764705883),
202+
RGB(0.20392156862745098, 0.8274509803921568, 0.37254901960784315),
203+
RGB(0.16862745098039217, 0.8588235294117647, 0.30980392156862746),
204+
RGB(0.13725490196078433, 0.8862745098039215, 0.24705882352941178),
205+
RGB(0.10196078431372549, 0.9137254901960784, 0.1843137254901961),
206+
RGB(0.06666666666666667, 0.9411764705882353, 0.12156862745098039),
207+
RGB(0.03137254901960784, 0.9686274509803922, 0.058823529411764705),
208+
RGB(0.0, 1.0, 0.0),
209+
RGB(0.027450980392156862, 1.0, 0.0),
210+
RGB(0.058823529411764705, 1.0, 0.0),
211+
RGB(0.09019607843137255, 1.0, 0.0),
212+
RGB(0.12156862745098039, 1.0, 0.0),
213+
RGB(0.15294117647058825, 1.0, 0.0),
214+
RGB(0.1843137254901961, 1.0, 0.0),
215+
RGB(0.21568627450980393, 1.0, 0.0),
216+
RGB(0.24705882352941178, 1.0, 0.0),
217+
RGB(0.2784313725490196, 1.0, 0.0),
218+
RGB(0.30980392156862746, 1.0, 0.0),
219+
RGB(0.3411764705882353, 1.0, 0.0),
220+
RGB(0.37254901960784315, 1.0, 0.0),
221+
RGB(0.403921568627451, 1.0, 0.0),
222+
RGB(0.43529411764705883, 1.0, 0.0),
223+
RGB(0.4666666666666667, 1.0, 0.0),
224+
RGB(0.4980392156862745, 1.0, 0.0),
225+
RGB(0.5294117647058824, 1.0, 0.0),
226+
RGB(0.5607843137254902, 1.0, 0.0),
227+
RGB(0.592156862745098, 1.0, 0.0),
228+
RGB(0.6235294117647059, 1.0, 0.0),
229+
RGB(0.6549019607843137, 1.0, 0.0),
230+
RGB(0.6862745098039216, 1.0, 0.0),
231+
RGB(0.7176470588235294, 1.0, 0.0),
232+
RGB(0.7490196078431373, 1.0, 0.0),
233+
RGB(0.7803921568627451, 1.0, 0.0),
234+
RGB(0.8117647058823529, 1.0, 0.0),
235+
RGB(0.8431372549019608, 1.0, 0.0),
236+
RGB(0.8745098039215686, 1.0, 0.0),
237+
RGB(0.9058823529411765, 1.0, 0.0),
238+
RGB(0.9372549019607843, 1.0, 0.0),
239+
RGB(0.9686274509803922, 1.0, 0.0),
240+
RGB(1.0, 1.0, 0.0),
241+
RGB(1.0, 0.9764705882352941, 0.0),
242+
RGB(1.0, 0.9568627450980393, 0.0),
243+
RGB(1.0, 0.9372549019607843, 0.0),
244+
RGB(1.0, 0.9137254901960784, 0.0),
245+
RGB(1.0, 0.8941176470588236, 0.0),
246+
RGB(1.0, 0.8745098039215686, 0.0),
247+
RGB(1.0, 0.8509803921568627, 0.0),
248+
RGB(1.0, 0.8313725490196079, 0.0),
249+
RGB(1.0, 0.8117647058823529, 0.0),
250+
RGB(1.0, 0.788235294117647, 0.0),
251+
RGB(1.0, 0.7686274509803922, 0.0),
252+
RGB(1.0, 0.7490196078431373, 0.0),
253+
RGB(1.0, 0.7254901960784313, 0.0),
254+
RGB(1.0, 0.7058823529411765, 0.0),
255+
RGB(1.0, 0.6862745098039216, 0.0),
256+
RGB(1.0, 0.6666666666666666, 0.0),
257+
RGB(1.0, 0.6431372549019608, 0.0),
258+
RGB(1.0, 0.6235294117647059, 0.0),
259+
RGB(1.0, 0.6039215686274509, 0.0),
260+
RGB(1.0, 0.5803921568627451, 0.0),
261+
RGB(1.0, 0.5607843137254902, 0.0),
262+
RGB(1.0, 0.5411764705882353, 0.0),
263+
RGB(1.0, 0.5176470588235295, 0.0),
264+
RGB(1.0, 0.4980392156862745, 0.0),
265+
RGB(1.0, 0.47843137254901963, 0.0),
266+
RGB(1.0, 0.4549019607843137, 0.0),
267+
RGB(1.0, 0.43529411764705883, 0.0),
268+
RGB(1.0, 0.41568627450980394, 0.0),
269+
RGB(1.0, 0.39215686274509803, 0.0),
270+
RGB(1.0, 0.37254901960784315, 0.0),
271+
RGB(1.0, 0.35294117647058826, 0.0),
272+
RGB(1.0, 0.3333333333333333, 0.0),
273+
RGB(1.0, 0.30980392156862746, 0.0),
274+
RGB(1.0, 0.2901960784313726, 0.0),
275+
RGB(1.0, 0.27058823529411763, 0.0),
276+
RGB(1.0, 0.24705882352941178, 0.0),
277+
RGB(1.0, 0.22745098039215686, 0.0),
278+
RGB(1.0, 0.20784313725490197, 0.0),
279+
RGB(1.0, 0.1843137254901961, 0.0),
280+
RGB(1.0, 0.16470588235294117, 0.0),
281+
RGB(1.0, 0.1450980392156863, 0.0),
282+
RGB(1.0, 0.12156862745098039, 0.0),
283+
RGB(1.0, 0.10196078431372549, 0.0),
284+
RGB(1.0, 0.08235294117647059, 0.0),
285+
RGB(1.0, 0.058823529411764705, 0.0),
286+
RGB(1.0, 0.0392156862745098, 0.0),
287+
RGB(1.0, 0.0196078431372549, 0.0),
288+
RGB(1.0, 0.0, 0.0),
289+
RGB(1.0, 0.0, 0.058823529411764705),
290+
RGB(1.0, 0.0, 0.12156862745098039),
291+
RGB(1.0, 0.0, 0.1843137254901961),
292+
RGB(1.0, 0.0, 0.24705882352941178),
293+
RGB(1.0, 0.0, 0.30980392156862746),
294+
RGB(1.0, 0.0, 0.37254901960784315),
295+
RGB(1.0, 0.0, 0.43529411764705883),
296+
RGB(1.0, 0.0, 0.4980392156862745),
297+
RGB(1.0, 0.0, 0.5607843137254902),
298+
RGB(1.0, 0.0, 0.6235294117647059),
299+
RGB(1.0, 0.0, 0.6862745098039216),
300+
RGB(1.0, 0.0, 0.7490196078431373),
301+
RGB(1.0, 0.0, 0.8117647058823529),
302+
RGB(1.0, 0.0, 0.8745098039215686),
303+
RGB(1.0, 0.0, 0.9372549019607843),
304+
], "general", "fastie, vegetation index, NDVI")

data/jcolors.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# see license information at https://github.com/JuliaLang/julia-logo-graphics/LICENSE.md
2+
13
loadcolorscheme(:julia, [
24
colorant"#1f83ff", # blue
35
colorant"#CA3C32", # red

data/nord.jl

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# the nord theme
2+
# https://www.nordtheme.com/docs
3+
# note that the colors in the original scheme are 0-indexed 😱
4+
5+
loadcolorscheme(:nord, [
6+
RGB(0.1796875, 0.203125, 0.25), # nord0
7+
RGB(0.23046875, 0.2578125, 0.3203125), # nord1
8+
RGB(0.26171875, 0.296875, 0.3671875), # nord2
9+
RGB(0.296875, 0.3359375, 0.4140625), # nord3
10+
RGB(0.84375, 0.8671875, 0.91015625), # nord4
11+
RGB(0.89453125, 0.91015625, 0.9375), # nord5
12+
RGB(0.921875, 0.93359375, 0.953125), # nord6
13+
RGB(0.55859375, 0.734375, 0.73046875), # nord7
14+
RGB(0.53125, 0.75, 0.8125), # nord8
15+
RGB(0.50390625, 0.62890625, 0.75390625), # nord9
16+
RGB(0.3671875, 0.50390625, 0.671875), # nord10
17+
RGB(0.74609375, 0.37890625, 0.4140625), # nord11
18+
RGB(0.8125, 0.52734375, 0.4375), # nord12
19+
RGB(0.91796875, 0.79296875, 0.54296875), # nord13
20+
RGB(0.63671875, 0.7421875, 0.546875), # nord14
21+
RGB(0.703125, 0.5546875, 0.67578125), # nord15
22+
], "nord", "the Nord theme, Polar Night, Snow Storm, Frost, Aurora")

docs/Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[deps]
2+
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
23
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
34
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
45
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
@@ -9,7 +10,7 @@ Luxor = "ae8d54c2-7ccd-5906-9d76-62fc9837b5bc"
910
ColorTypes = "0.9, 0.10, 0.11"
1011
Colors = "0.9, 0.10, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17, 1.0"
1112
Documenter = "0.27.3"
12-
Luxor = "2"
13+
Luxor = "2, 3"
1314
julia = "1"
1415

1516
[extras]

0 commit comments

Comments
 (0)