-
-
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: West Yorkshire Spinners - The Croft DK
- Loading branch information
Showing
5 changed files
with
138 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
114 changes: 114 additions & 0 deletions
114
src/lib/yarns/west-yorkshire-spinners/the-croft-dk/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,114 @@ | ||
import type { Colorway } from '$lib/types'; | ||
|
||
const colorways: Colorway[] = [ | ||
{ | ||
source: { | ||
name: 'wyspinners.com', | ||
href: 'https://www.wyspinners.com/the-croft-dk-yarn', | ||
accessed: '2024-11-30', | ||
}, | ||
colors: [ | ||
{ | ||
hex: '#5a2d34', | ||
name: 'Skelberry 580', | ||
}, | ||
{ | ||
hex: '#b37f8e', | ||
name: 'Bressay 1150', | ||
}, | ||
{ | ||
hex: '#c6a29e', | ||
name: 'Maywick 512', | ||
}, | ||
{ | ||
hex: '#bd6136', | ||
name: 'Challister 1019', | ||
}, | ||
{ | ||
hex: '#dfab52', | ||
name: 'Harkland 226', | ||
}, | ||
{ | ||
hex: '#2a404e', | ||
name: 'Norby 353', | ||
}, | ||
{ | ||
hex: '#57737e', | ||
name: 'Nista 348', | ||
}, | ||
{ | ||
hex: '#8097b1', | ||
name: 'Whalsay 1151', | ||
}, | ||
{ | ||
hex: '#8ab8a4', | ||
name: 'Sampfrey 1153', | ||
}, | ||
{ | ||
hex: '#4d5c32', | ||
name: 'Greenbank 404', | ||
}, | ||
{ | ||
hex: '#948f4d', | ||
name: 'Graven 1018', | ||
}, | ||
{ | ||
hex: '#676766', | ||
name: 'Cova 450', | ||
}, | ||
{ | ||
hex: '#a4a59f', | ||
name: 'Colsay 212', | ||
}, | ||
{ | ||
hex: '#c6c4cb', | ||
name: 'Clate 1152', | ||
}, | ||
{ | ||
hex: '#3a2a1d', | ||
name: 'Burnside 690', | ||
}, | ||
{ | ||
hex: '#b8a377', | ||
name: 'Sandvoe 135', | ||
}, | ||
{ | ||
hex: '#efe9cc', | ||
name: 'Langa 010', | ||
}, | ||
{ | ||
hex: '#1a1a1a', | ||
name: 'Lunnister 099', | ||
}, | ||
{ | ||
hex: '#e4c6a5', | ||
name: 'Tangwick 1021', | ||
}, | ||
{ | ||
hex: '#beb1aa', | ||
name: 'Mailand 813', | ||
}, | ||
{ | ||
hex: '#a3b1b2', | ||
name: 'Northdale 808', | ||
}, | ||
{ | ||
hex: '#c9c8b8', | ||
name: 'Eastshore 1165', | ||
}, | ||
{ | ||
hex: '#c4c8b0', | ||
name: 'Hoswick 1164', | ||
}, | ||
{ | ||
hex: '#cac3a2', | ||
name: 'Scalloway 1020', | ||
}, | ||
{ | ||
hex: '#797f59', | ||
name: 'Hillside 809', | ||
}, | ||
], | ||
}, | ||
]; | ||
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: 'the_croft_dk', | ||
name: 'The Croft DK', | ||
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 theCroftDK } from './the-croft-dk/yarn'; | ||
|
||
export const brand: Brand = { | ||
name: 'West Yorkshire Spinners', | ||
id: 'west_yorkshire_spinners', | ||
yarns: [theCroftDK], | ||
}; |
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