-
-
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: Knitting for Olive - Cotton Merino
- Loading branch information
Showing
6 changed files
with
155 additions
and
1 deletion.
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
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
130 changes: 130 additions & 0 deletions
130
src/lib/yarns/knitting-for-olive/cotton-merino/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,130 @@ | ||
import type { Colorway } from '$lib/types'; | ||
|
||
const colorways: Colorway[] = [ | ||
{ | ||
source: { | ||
name: 'knittingforolive.com', | ||
href: 'https://knittingforolive.com/collections/knitting-for-olive-cottonmerino', // also available in Danish here: https://knittingforolive.dk/collections/knitting-for-olive-cottonmerino | ||
accessed: '2024-11-13', | ||
}, | ||
colors: [ | ||
{ | ||
hex: '#e1d9c9', | ||
name: 'Undyed', | ||
}, | ||
{ | ||
hex: '#eae5de', | ||
name: 'Cream', | ||
}, | ||
{ | ||
hex: '#c3c1c0', | ||
name: 'Pearl Gray', | ||
}, | ||
{ | ||
hex: '#4e4d50', | ||
name: 'Thunder Cloud', | ||
}, | ||
{ | ||
hex: '#4c3b2c', | ||
name: 'Bark', | ||
}, | ||
{ | ||
hex: '#6f645d', | ||
name: 'Mole', | ||
}, | ||
{ | ||
hex: '#b3a89e', | ||
name: 'Oatmeal', | ||
}, | ||
{ | ||
hex: '#dccdb5', | ||
name: 'Wheat', | ||
}, | ||
{ | ||
hex: '#6f5343', | ||
name: 'Dark Cognac', | ||
}, | ||
{ | ||
hex: '#97754a', | ||
name: 'Nut Brown', | ||
}, | ||
{ | ||
hex: '#e0c463', | ||
name: 'Buttercup', | ||
}, | ||
{ | ||
hex: '#d5c6a4', | ||
name: 'Dusty Banana', | ||
}, | ||
{ | ||
hex: '#cbb6a6', | ||
name: 'Powder', | ||
}, | ||
{ | ||
hex: '#e9d3c9', | ||
name: 'Ballerina', | ||
}, | ||
{ | ||
hex: '#ca8d85', | ||
name: 'Rhubarb Rose', | ||
}, | ||
{ | ||
hex: '#b97a6e', | ||
name: 'Terracotta Rose', | ||
}, | ||
{ | ||
hex: '#e5a0a4', | ||
name: 'Strawberry Icecream', | ||
}, | ||
{ | ||
hex: '#c64041', | ||
name: 'Red Currant', | ||
}, | ||
{ | ||
hex: '#e0a5be', | ||
name: 'Japanese Anemone', | ||
}, | ||
{ | ||
hex: '#9c99b7', | ||
name: 'Blueberry Ice Cream', | ||
}, | ||
{ | ||
hex: '#626871', | ||
name: 'Dusty Blue Whale', | ||
}, | ||
{ | ||
hex: '#353a54', | ||
name: 'Navy Blue', | ||
}, | ||
{ | ||
hex: '#7c838a', | ||
name: 'Elephant Blue', | ||
}, | ||
{ | ||
hex: '#a8afb1', | ||
name: 'Soft Blue', | ||
}, | ||
{ | ||
hex: '#c6cdc8', | ||
name: 'Soft Mint', | ||
}, | ||
{ | ||
hex: '#e4e055', | ||
name: 'Lime Yellow', | ||
}, | ||
{ | ||
hex: '#5c8953', | ||
name: 'Clover Green', | ||
}, | ||
{ | ||
hex: '#606660', | ||
name: 'Dark Sea Green', | ||
}, | ||
{ | ||
hex: '#95998a', | ||
name: 'Dusty Artichoke', | ||
}, | ||
], | ||
}, | ||
]; | ||
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, | ||
name: 'Cotton Merino', | ||
id: 'cotton_merino', | ||
weightId: 'lf', | ||
}; |
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 cottonMerino } from './cotton-merino/yarn'; | ||
|
||
export const brand: Brand = { | ||
name: 'Knitting for Olive', | ||
id: 'knitting_for_olive', | ||
yarns: [cottonMerino], | ||
}; |
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