Skip to content

Commit

Permalink
added new yarn: Lion Brand - Re-Spun
Browse files Browse the repository at this point in the history
  • Loading branch information
jdvlpr committed Jan 18, 2025
1 parent 9f34ab9 commit e7c3de0
Show file tree
Hide file tree
Showing 5 changed files with 103 additions and 0 deletions.
86 changes: 86 additions & 0 deletions src/lib/yarns/lion-brand/re-spun/colorways.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
import type { Colorway } from '$lib/types';

const colorways: Colorway[] = [
{
source: {
name: 'lionbrand.com',
href: 'https://www.lionbrand.com/products/re-spun-bonus-bundle-yarn',
accessed: '2025-01-18',
},
colors: [
{
hex: '#133a39',
name: 'Alpine',
},
{
hex: '#cbcca8',
name: 'Parchment',
},
{
hex: '#8b7281',
name: 'Blush',
},
{
hex: '#09172c',
name: 'Deep Denim',
},
{
hex: '#766f63',
name: 'Hazelwood',
},
{
hex: '#53331b',
name: 'Cider',
},
{
hex: '#222234',
name: 'Raisin',
},
{
hex: '#667d86',
name: 'Silver',
},
{
hex: '#101416',
name: 'Raven',
},
{
hex: '#9a6318',
name: 'Cornsilk',
},
{
hex: '#802817',
name: 'Amber',
},
{
hex: '#310c18',
name: 'Wine',
},
{
hex: '#1e4469',
name: 'Aegean',
},
{
hex: '#964d26',
name: 'Pheasant',
},
{
hex: '#a93d41',
name: 'Cranberry',
},
{
hex: '#0f4c71',
name: 'Fjord',
},
{
hex: '#2b1d50',
name: 'Heliotrope',
},
{
hex: '#e0bd6a',
name: 'Sahara',
},
],
},
];
export default colorways;
9 changes: 9 additions & 0 deletions src/lib/yarns/lion-brand/re-spun/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: 'Re-Spun',
id: 're_spun',
weightId: 'w',
};
1 change: 1 addition & 0 deletions src/lib/yarns/lion-brand/re-up-bonus-bundle/yarn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ export const yarn: Yarn = {
colorways,
name: 'Re-Up Bonus Bundle',
id: 're_up_bonus_bundle',
weightId: 'w',
};
2 changes: 2 additions & 0 deletions src/lib/yarns/lion-brand/yarns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { yarn as heartland } from './heartland/yarn';
import { yarn as hueMe } from './hue-me/yarn';
import { yarn as lbCollectionSuperwashMerino } from './lb-collection-superwash-merino/yarn';
import { yarn as poundOfLove } from './pound-of-love/yarn';
import { yarn as reSpun } from './re-spun/yarn';
import { yarn as reUpBonusBundle } from './re-up-bonus-bundle/yarn';
import { yarn as schittsCreek } from './schitts-creek/yarn';
import { yarn as truboo } from './truboo/yarn';
Expand All @@ -30,6 +31,7 @@ export const brand: Brand = {
hueMe,
lbCollectionSuperwashMerino,
poundOfLove,
reSpun,
reUpBonusBundle,
schittsCreek,
truboo,
Expand Down
5 changes: 5 additions & 0 deletions src/routes/changelog/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ export const entries: ChangelogItem[] = [
text: `61 colorways`,
title: 'Added Yarn: Hobbii - Amigo XL',
},
{
icon: ICONS.checkCircle,
text: `18 colorways`,
title: 'Added Yarn: Lion Brand - Re-Spun',
},
],
version: '4.15.0',
},
Expand Down

0 comments on commit e7c3de0

Please sign in to comment.