-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added new yarn: Hobbii - Friends Wheel
- Loading branch information
Showing
7 changed files
with
386 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
import type { Colorway } from '$lib/types'; | ||
|
||
const colorways: Colorway[] = [ | ||
{ | ||
source: { | ||
name: 'hobbii.com', | ||
href: 'https://hobbii.com/friends-wheel', | ||
accessed: '2024-11-09', | ||
}, | ||
colors: [ | ||
{ | ||
hex: '#f5f2ef', | ||
name: 'Off White', | ||
}, | ||
{ | ||
hex: '#f3e2d6', | ||
name: 'Cream', | ||
}, | ||
{ | ||
hex: '#c1b4ad', | ||
name: 'Sand', | ||
}, | ||
{ | ||
hex: '#8f7c6d', | ||
name: 'Dune', | ||
}, | ||
{ | ||
hex: '#bc936a', | ||
name: 'Nougat', | ||
}, | ||
{ | ||
hex: '#532015', | ||
name: 'Chocolate', | ||
}, | ||
{ | ||
hex: '#7f4925', | ||
name: 'Caramel', | ||
}, | ||
{ | ||
hex: '#973b23', | ||
name: 'Cognac', | ||
}, | ||
{ | ||
hex: '#f7e281', | ||
name: 'Lemon Curd', | ||
}, | ||
{ | ||
hex: '#edb144', | ||
name: 'Dark Yellow', | ||
}, | ||
{ | ||
hex: '#ea9341', | ||
name: 'Buckthorn', | ||
}, | ||
{ | ||
hex: '#e06536', | ||
name: 'Pumpkin', | ||
}, | ||
{ | ||
hex: '#d14c5c', | ||
name: 'Bubblegum', | ||
}, | ||
{ | ||
hex: '#a12823', | ||
name: 'Tomato', | ||
}, | ||
{ | ||
hex: '#631815', | ||
name: 'Bordeaux', | ||
}, | ||
{ | ||
hex: '#efc0c7', | ||
name: 'Rose', | ||
}, | ||
{ | ||
hex: '#c33972', | ||
name: 'Pink', | ||
}, | ||
{ | ||
hex: '#f6e0e0', | ||
name: 'Hint Of Pink', | ||
}, | ||
{ | ||
hex: '#dd8992', | ||
name: 'Pink Berry Smoothie', | ||
}, | ||
{ | ||
hex: '#b5585d', | ||
name: 'Mulberry', | ||
}, | ||
{ | ||
hex: '#ac9491', | ||
name: 'Dusty Mauve', | ||
}, | ||
{ | ||
hex: '#4b2d2c', | ||
name: 'Black Cherry', | ||
}, | ||
{ | ||
hex: '#612b57', | ||
name: 'Plum', | ||
}, | ||
{ | ||
hex: '#bea6c6', | ||
name: 'Lilac', | ||
}, | ||
{ | ||
hex: '#562c66', | ||
name: 'Grape', | ||
}, | ||
{ | ||
hex: '#26163d', | ||
name: 'Black Currant', | ||
}, | ||
{ | ||
hex: '#bec2cd', | ||
name: 'Baby Blue', | ||
}, | ||
{ | ||
hex: '#7b94b6', | ||
name: 'Arctic Blue', | ||
}, | ||
{ | ||
hex: '#374f65', | ||
name: 'Open Sea', | ||
}, | ||
{ | ||
hex: '#4d6aa5', | ||
name: 'French Blue', | ||
}, | ||
{ | ||
hex: '#1e1f5f', | ||
name: 'Sapphire', | ||
}, | ||
{ | ||
hex: '#212141', | ||
name: 'Navy', | ||
}, | ||
{ | ||
hex: '#131728', | ||
name: 'Midnight Blue', | ||
}, | ||
{ | ||
hex: '#193946', | ||
name: 'Deep Ocean', | ||
}, | ||
{ | ||
hex: '#4593b4', | ||
name: 'Capri Blue', | ||
}, | ||
{ | ||
hex: '#36779e', | ||
name: 'Aqua', | ||
}, | ||
{ | ||
hex: '#3b78a1', | ||
name: 'Lagoon', | ||
}, | ||
{ | ||
hex: '#68c8bd', | ||
name: 'Turquoise', | ||
}, | ||
{ | ||
hex: '#42908c', | ||
name: 'Dark Turquoise', | ||
}, | ||
{ | ||
hex: '#265557', | ||
name: 'Teal', | ||
}, | ||
{ | ||
hex: '#52a049', | ||
name: 'Shamrock', | ||
}, | ||
{ | ||
hex: '#2d6533', | ||
name: 'Emerald', | ||
}, | ||
{ | ||
hex: '#dad38a', | ||
name: 'Pale Matcha', | ||
}, | ||
{ | ||
hex: '#818b50', | ||
name: 'Artichoke', | ||
}, | ||
{ | ||
hex: '#91ada8', | ||
name: 'Misty Green', | ||
}, | ||
{ | ||
hex: '#6d825f', | ||
name: 'Sage', | ||
}, | ||
{ | ||
hex: '#c9c8c8', | ||
name: 'Light Gray', | ||
}, | ||
{ | ||
hex: '#a19e9b', | ||
name: 'Gray', | ||
}, | ||
{ | ||
hex: '#584d51', | ||
name: 'Anthracite', | ||
}, | ||
{ | ||
hex: '#1c1d25', | ||
name: 'Black', | ||
}, | ||
], | ||
}, | ||
]; | ||
export default colorways; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import type { Yarn } from '$lib/types'; | ||
import colorways from './colorways'; | ||
|
||
export const yarn: Yarn = { | ||
colorways, | ||
name: 'Friends Wheel', | ||
id: 'friends_wheel', | ||
weightId: 's', | ||
}; |
Oops, something went wrong.