Skip to content

Commit

Permalink
added new yarn: Hobbii - Friends Wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
jdvlpr committed Nov 9, 2024
1 parent 0b3c5c7 commit b8df8eb
Show file tree
Hide file tree
Showing 7 changed files with 386 additions and 81 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "temperature-blanket-web-app",
"version": "4.4.0",
"version": "4.5.0",
"description": "Weather Data + Art! Web app for creating a temperature blanket",
"main": "index.html",
"private": true,
Expand Down
214 changes: 214 additions & 0 deletions src/lib/yarns/hobbii/friends-wheel/colorways.ts
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;
9 changes: 9 additions & 0 deletions src/lib/yarns/hobbii/friends-wheel/yarn.ts
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',
};
Loading

0 comments on commit b8df8eb

Please sign in to comment.