-
-
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: Coop Knits - Socks Yeah
- Loading branch information
Showing
5 changed files
with
178 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
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,154 @@ | ||
import type { Colorway } from '$lib/types'; | ||
|
||
const colorways: Colorway[] = [ | ||
{ | ||
source: { | ||
name: 'stringcraft.co.uk', | ||
href: 'https://stringcraft.co.uk/products/coop-knits-socks-yeah', | ||
accessed: '2024-12-31', | ||
}, | ||
colors: [ | ||
{ | ||
hex: '#a2847d', | ||
name: 'OBSIDIAN', | ||
}, | ||
{ | ||
hex: '#c9786c', | ||
name: 'AMMOLITE', | ||
}, | ||
{ | ||
hex: '#a47f6a', | ||
name: 'AXNITE', | ||
}, | ||
{ | ||
hex: '#d2a44e', | ||
name: 'SPHENE', | ||
}, | ||
{ | ||
hex: '#a7a6a6', | ||
name: 'DANBURITE', | ||
}, | ||
{ | ||
hex: '#948aa3', | ||
name: 'KUNZITE', | ||
}, | ||
{ | ||
hex: '#516f88', | ||
name: 'BERYL', | ||
}, | ||
{ | ||
hex: '#8ca6a3', | ||
name: 'CHRYSO', | ||
}, | ||
{ | ||
hex: '#61717a', | ||
name: 'IOLITE', | ||
}, | ||
{ | ||
hex: '#385651', | ||
name: 'MALACHITE', | ||
}, | ||
{ | ||
hex: '#374575', | ||
name: 'BENITOITE', | ||
}, | ||
{ | ||
hex: '#62455c', | ||
name: 'SUGILITE', | ||
}, | ||
{ | ||
hex: '#376d85', | ||
name: 'TOPAZ', | ||
}, | ||
{ | ||
hex: '#8ba251', | ||
name: 'PERIDOT', | ||
}, | ||
{ | ||
hex: '#d0d7b3', | ||
name: 'JADEITE', | ||
}, | ||
{ | ||
hex: '#be444c', | ||
name: 'RUBY', | ||
}, | ||
{ | ||
hex: '#ab3d21', | ||
name: 'ALMANDIN', | ||
}, | ||
{ | ||
hex: '#d48134', | ||
name: 'CITRINE', | ||
}, | ||
{ | ||
hex: '#8cc4c8', | ||
name: 'LARIMAR', | ||
}, | ||
{ | ||
hex: '#1c2e94', | ||
name: 'AZURITE', | ||
}, | ||
{ | ||
hex: '#656059', | ||
name: 'MELANITE', | ||
}, | ||
{ | ||
hex: '#c8b393', | ||
name: 'QUARTZ', | ||
}, | ||
{ | ||
hex: '#aaa6a8', | ||
name: 'CHALCEDONY', | ||
}, | ||
{ | ||
hex: '#727255', | ||
name: 'LABRADORITE', | ||
}, | ||
{ | ||
hex: '#243e5f', | ||
name: 'LAPIS', | ||
}, | ||
{ | ||
hex: '#817c52', | ||
name: 'AVENTURINE', | ||
}, | ||
{ | ||
hex: '#988734', | ||
name: 'ACTINOLITE', | ||
}, | ||
{ | ||
hex: '#ddad9b', | ||
name: 'LEPIDOLITE', | ||
}, | ||
{ | ||
hex: '#8a468e', | ||
name: 'AMYTHEST', | ||
}, | ||
{ | ||
hex: '#994944', | ||
name: 'CARNELIAN', | ||
}, | ||
{ | ||
hex: '#dbe95f', | ||
name: 'NEONS - HELIUM', | ||
}, | ||
{ | ||
hex: '#a4d157', | ||
name: 'NEONS - KRYPTON', | ||
}, | ||
{ | ||
hex: '#e46138', | ||
name: 'NEONS - ARGON', | ||
}, | ||
{ | ||
hex: '#da3956', | ||
name: 'NEONS - XENON', | ||
}, | ||
{ | ||
hex: '#5c3996', | ||
name: 'NEONS - RADON', | ||
}, | ||
], | ||
}, | ||
]; | ||
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: 'Socks Yeah!', | ||
id: 'socks_yeah', | ||
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 socksYeah } from './socks-yeah/yarn'; | ||
|
||
export const brand: Brand = { | ||
name: 'Coop Knits', | ||
id: 'coop_knits', | ||
yarns: [socksYeah], | ||
}; |
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