-
-
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: The Women's Institute - Premium Acrylic
- Loading branch information
Showing
5 changed files
with
122 additions
and
0 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
98 changes: 98 additions & 0 deletions
98
src/lib/yarns/the-womens-institute/premium-acrylic/colorways.ts
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,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; |
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, | ||
id: 'premium_acrylic', | ||
name: 'Premium Acrylic', | ||
weightId: 'd', | ||
}; |
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,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], | ||
}; |
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