2021-12-13 22:15:11 +00:00
|
|
|
class Palette {
|
|
|
|
colors: string[];
|
|
|
|
label: string;
|
|
|
|
|
|
|
|
constructor(label: string, colors: string[]) {
|
2021-12-15 19:31:30 +00:00
|
|
|
if (colors.length < 2) {
|
|
|
|
throw new Error("Palette requires at least two colors.");
|
|
|
|
}
|
|
|
|
|
2021-12-13 22:15:11 +00:00
|
|
|
this.label = label;
|
|
|
|
this.colors = colors;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const nord = new Palette("Nord", [
|
|
|
|
"2e3440",
|
|
|
|
"3b4252",
|
|
|
|
"434c5e",
|
|
|
|
"4c566a",
|
|
|
|
"d8dee9",
|
|
|
|
"e5e9f0",
|
|
|
|
"eceff4",
|
|
|
|
"8fbcbb",
|
|
|
|
"88c0d0",
|
|
|
|
"81a1c1",
|
|
|
|
"5e81ac",
|
|
|
|
"bf616a",
|
|
|
|
"d08770",
|
|
|
|
"ebcb8b",
|
|
|
|
"a3be8c",
|
|
|
|
"b48ead",
|
|
|
|
]);
|
|
|
|
|
|
|
|
const monokai = new Palette("Monokai", [
|
|
|
|
"2e2e2e",
|
|
|
|
"797979",
|
|
|
|
"d6d6d6",
|
|
|
|
"e5b567",
|
|
|
|
"b4d273",
|
|
|
|
"e87d3e",
|
|
|
|
"9e86c8",
|
|
|
|
"b05279",
|
|
|
|
"6c99bb",
|
|
|
|
]);
|
|
|
|
|
|
|
|
const grayScale1bit = new Palette("Gray Scale 1 bit (Black & White)", [
|
|
|
|
"000000",
|
|
|
|
"ffffff",
|
|
|
|
]);
|
|
|
|
|
|
|
|
const grayScale2bits = new Palette("Gray Scale 2 bits", [
|
|
|
|
"000000",
|
|
|
|
"676767",
|
|
|
|
"b6b6b6",
|
|
|
|
"ffffff",
|
|
|
|
]);
|
|
|
|
|
2021-12-15 19:31:30 +00:00
|
|
|
const grayScale2bitsGamma = new Palette("Gray, 4 shades, gamma-corrected", [
|
|
|
|
"000000",
|
|
|
|
"888888",
|
|
|
|
"b6b6b6",
|
|
|
|
"e0e0e0",
|
|
|
|
]);
|
|
|
|
|
2022-04-18 06:43:49 +00:00
|
|
|
// https://draculatheme.com
|
|
|
|
const dracula = new Palette("Dracula", [
|
|
|
|
"282a36",
|
|
|
|
"44475a",
|
|
|
|
"f8f8f2",
|
|
|
|
"6272a4",
|
|
|
|
"8be9fd",
|
|
|
|
"50fa7b",
|
|
|
|
"ffb86c",
|
|
|
|
"ff79c6",
|
|
|
|
"bd93f9",
|
|
|
|
"ff5555",
|
|
|
|
"f1fa8c",
|
2021-12-15 19:31:30 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
const palettes = [
|
|
|
|
nord,
|
|
|
|
monokai,
|
|
|
|
grayScale1bit,
|
|
|
|
grayScale2bits,
|
|
|
|
grayScale2bitsGamma,
|
2022-04-18 06:43:49 +00:00
|
|
|
dracula,
|
2021-12-15 19:31:30 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
palettes.sort((a, b) => a.label.localeCompare(b.label));
|
2021-12-15 17:46:05 +00:00
|
|
|
|
|
|
|
export { palettes };
|
2021-12-13 22:15:11 +00:00
|
|
|
export default Palette;
|