Skip to content

Commit

Permalink
added new yarn: The Women's Institute - Premium Acrylic
Browse files Browse the repository at this point in the history
  • Loading branch information
jdvlpr committed Jan 12, 2025
1 parent 269c5be commit 04dec4f
Show file tree
Hide file tree
Showing 5 changed files with 122 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/yarns/brands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ import { brand as skeinz } from './skeinz/yarns';
import { brand as sourceOfFibre } from './source-of-fibre/yarns';
import { brand as stylecraft } from './stylecraft/yarns';
import { brand as svartaFaret } from './svarta-faret/yarns';
import { brand as theWomensInstitute } from './the-womens-institute/yarns';
import { brand as tricotCafe } from './tricot-cafe/yarns';
import { brand as valleyYarns } from './valley-yarns/yarns';
import { brand as weLoveYarn } from './we-love-yarn/yarns';
Expand Down Expand Up @@ -109,6 +110,7 @@ export const brands: Brand[] = [
sourceOfFibre,
stylecraft,
svartaFaret,
theWomensInstitute,
tricotCafe,
valleyYarns,
weLoveYarn,
Expand Down
98 changes: 98 additions & 0 deletions src/lib/yarns/the-womens-institute/premium-acrylic/colorways.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
import type { Colorway } from '$lib/types';

const colorways: Colorway[] = [
{
source: {
name: 'hobbycraft.com',
href: 'https://www.hobbycraft.co.uk/593042.html?dwvar_593042_variantAttribute1=1026&quantity=1',
accessed: '2025-01-12',
},
colors: [
{
hex: '#ecebef',
name: 'White',
},
{
hex: '#17171e',
name: 'Black',
},
{
hex: '#878998',
name: 'Grey',
},
{
hex: '#fada48',
name: 'Yellow',
},
{
hex: '#edcfd8',
name: 'Light Pink',
},
{
hex: '#d80028',
name: 'Red',
},
{
hex: '#233358',
name: 'Navy',
},
{
hex: '#373b44',
name: 'Grey',
},
{
hex: '#3d0b1d',
name: 'Plum',
},
{
hex: '#1252b4',
name: 'Blue',
},
{
hex: '#84bbd2',
name: 'Soft Blue',
},
{
hex: '#a03660',
name: 'Soft Pink',
},
{
hex: '#913815',
name: 'Mid Brown',
},
{
hex: '#290030',
name: 'Purple',
},
{
hex: '#114244',
name: 'Petrol',
},
{
hex: '#0f6d6d',
name: 'Dark Turquoise',
},
{
hex: '#b50047',
name: 'Magenta',
},
{
hex: '#840011',
name: 'Fox Rust',
},
{
hex: '#54622b',
name: 'Sage Green',
},
{
hex: '#2c2343',
name: 'Dark Lilac',
},
{
hex: '#63bca2',
name: 'Aqua',
},
],
},
];
export default colorways;
9 changes: 9 additions & 0 deletions src/lib/yarns/the-womens-institute/premium-acrylic/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,
id: 'premium_acrylic',
name: 'Premium Acrylic',
weightId: 'd',
};
8 changes: 8 additions & 0 deletions src/lib/yarns/the-womens-institute/yarns.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import type { Brand } from '$lib/types';
import { yarn as premiumAcrylic } from './premium-acrylic/yarn';

export const brand: Brand = {
name: "The Women's Institute",
id: 'the_womens_institute',
yarns: [premiumAcrylic],
};
5 changes: 5 additions & 0 deletions src/routes/changelog/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ export const entries: ChangelogItem[] = [
text: `12 colorways`,
title: 'Added Yarn: Source of Fibre - Clear As Cotton',
},
{
icon: ICONS.checkCircle,
text: `21 colorways`,
title: "Added Yarn: The Women's Institute - Premium Acrylic",
},
],
version: '4.13.0',
},
Expand Down

0 comments on commit 04dec4f

Please sign in to comment.