Skip to content

Commit

Permalink
#189 Add initial data for new color #FFA852 (pumpkin vapour)
Browse files Browse the repository at this point in the history
  • Loading branch information
azurepolarbear committed Nov 20, 2024
1 parent 824fcdb commit b476316
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/color/palette/palette-colors/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export * from './blue';
export * from './brown';
export * from './gray';
export * from './green';
export * from './orange';
export * from './pink';
export * from './purple';
export * from './red';
Expand Down
18 changes: 18 additions & 0 deletions src/main/color/palette/palette-colors/orange/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*
* Copyright (C) 2024 brittni and the polar bear LLC.
*
* This file is a part of brittni and the polar bear's generative art library,
* which is released under the GNU Affero General Public License, Version 3.0.
* You may not use this file except in compliance with the license.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. See LICENSE or go to
* https://www.gnu.org/licenses/agpl-3.0.en.html for full license details.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
*/

export * from './pc-ffa852';
11 changes: 11 additions & 0 deletions src/main/color/palette/palette-colors/orange/pc-ffa852.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,14 @@
// pumpkin vapour
// black-pass
// luminance: 0.4987445986

import { Discriminators } from 'discriminator';
import { PaletteColor } from 'palette';

export const PC_FFA852: PaletteColor = {
HEX: '#FFA852',
RGB: { R: 255, G: 168, B: 82 },
HSL: { H: 30, S: 100, L: 66 },
NAME: 'pumpkin vapour',
DISCRIMINATOR: Discriminators.PALETTE_COLOR
};

0 comments on commit b476316

Please sign in to comment.