-
-
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.
- Loading branch information
Showing
6 changed files
with
216 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
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,186 @@ | ||
import type { Colorway } from '$lib/types'; | ||
|
||
const colorways: Colorway[] = [ | ||
{ | ||
source: { | ||
name: 'tessiland.com', | ||
href: 'https://www.tessiland.com/en/brand/7-chuck', | ||
accessed: '2025-01-24', | ||
}, | ||
colors: [ | ||
{ | ||
hex: '#7ebba4', | ||
name: 'Aquamarine', | ||
}, | ||
{ | ||
hex: '#335065', | ||
name: 'Avio', | ||
}, | ||
{ | ||
hex: '#121115', | ||
name: 'Black', | ||
}, | ||
{ | ||
hex: '#0e1025', | ||
name: 'Blue', | ||
}, | ||
{ | ||
hex: '#0a1b30', | ||
name: 'Blue Sea', | ||
}, | ||
{ | ||
hex: '#130e0d', | ||
name: 'Brown', | ||
}, | ||
{ | ||
hex: '#460b17', | ||
name: 'Burgundy', | ||
}, | ||
{ | ||
hex: '#467426', | ||
name: 'Cactus Green', | ||
}, | ||
{ | ||
hex: '#9e8c6b', | ||
name: 'Camel', | ||
}, | ||
{ | ||
hex: '#1b2f6a', | ||
name: 'Cornflower Blue', | ||
}, | ||
{ | ||
hex: '#e2dfd2', | ||
name: 'Cream', | ||
}, | ||
{ | ||
hex: '#2c2b2f', | ||
name: 'Dark Gray', | ||
}, | ||
{ | ||
hex: '#1e422e', | ||
name: 'Dark Green', | ||
}, | ||
{ | ||
hex: '#20805b', | ||
name: 'Emerald', | ||
}, | ||
{ | ||
hex: '#a50035', | ||
name: 'Fuchsia', | ||
}, | ||
{ | ||
hex: '#7b7b79', | ||
name: 'Gray', | ||
}, | ||
{ | ||
hex: '#168545', | ||
name: 'Green Flag', | ||
}, | ||
{ | ||
hex: '#542182', | ||
name: 'Iris', | ||
}, | ||
{ | ||
hex: '#8a80c7', | ||
name: 'Lavander', | ||
}, | ||
{ | ||
hex: '#35a0b5', | ||
name: 'Light Blue', | ||
}, | ||
{ | ||
hex: '#aba3a3', | ||
name: 'Light Gray', | ||
}, | ||
{ | ||
hex: '#b493b7', | ||
name: 'Light Lilac', | ||
}, | ||
{ | ||
hex: '#e7b8bf', | ||
name: 'Light Pink', | ||
}, | ||
{ | ||
hex: '#363e29', | ||
name: 'Military', | ||
}, | ||
{ | ||
hex: '#884b14', | ||
name: 'Mustard', | ||
}, | ||
{ | ||
hex: '#831e2d', | ||
name: 'Old Rose', | ||
}, | ||
{ | ||
hex: '#383921', | ||
name: 'Olive Green', | ||
}, | ||
{ | ||
hex: '#bc1f10', | ||
name: 'Orange', | ||
}, | ||
{ | ||
hex: '#a8488d', | ||
name: 'Orchid', | ||
}, | ||
{ | ||
hex: '#ab6057', | ||
name: 'Pale Pink', | ||
}, | ||
{ | ||
hex: '#2a424f', | ||
name: 'Periwinkle Blue', | ||
}, | ||
{ | ||
hex: '#1b4549', | ||
name: 'Petroleum', | ||
}, | ||
{ | ||
hex: '#3c0f2f', | ||
name: 'Plum', | ||
}, | ||
{ | ||
hex: '#89000d', | ||
name: 'Red', | ||
}, | ||
{ | ||
hex: '#6e6f4e', | ||
name: 'Sage Green', | ||
}, | ||
{ | ||
hex: '#d5644f', | ||
name: 'Salmon', | ||
}, | ||
{ | ||
hex: '#a68062', | ||
name: 'Skin', | ||
}, | ||
{ | ||
hex: '#a3c0cd', | ||
name: 'Sky Blue', | ||
}, | ||
{ | ||
hex: '#0e2f2a', | ||
name: 'Teal', | ||
}, | ||
{ | ||
hex: '#145181', | ||
name: 'Turquoise', | ||
}, | ||
{ | ||
hex: '#d8d8d8', | ||
name: 'White', | ||
}, | ||
{ | ||
hex: '#e4a421', | ||
name: 'Yellow', | ||
}, | ||
{ | ||
hex: '#d4ba37', | ||
name: 'Yellowish', | ||
}, | ||
], | ||
}, | ||
]; | ||
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: 'chuck', | ||
name: 'Chuck', | ||
weightId: 's', | ||
}; |
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 chuck } from './chuck/yarn'; | ||
|
||
export const brand: Brand = { | ||
name: 'Tessiland', | ||
id: 'tessiland', | ||
yarns: [chuck], | ||
}; |
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