Skip to content

Commit

Permalink
added new yarn: Tessiland - Chuck
Browse files Browse the repository at this point in the history
  • Loading branch information
jdvlpr committed Jan 24, 2025
1 parent 7fce2ca commit c830a80
Show file tree
Hide file tree
Showing 6 changed files with 216 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "temperature-blanket-web-app",
"version": "4.16.0",
"version": "4.17.0",
"description": "Weather Data + Art! Web app for creating a temperature blanket",
"main": "index.html",
"private": true,
Expand Down
2 changes: 2 additions & 0 deletions src/lib/yarns/brands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ import { brand as skeinz } from './skeinz/yarns';
import { brand as sourceOfFibre } from './source-of-fibre/yarns';
import { brand as stylecraft } from './stylecraft/yarns';
import { brand as svartaFaret } from './svarta-faret/yarns';
import { brand as tessiland } from './tessiland/yarns';
import { brand as theWomensInstitute } from './the-womens-institute/yarns';
import { brand as tricotCafe } from './tricot-cafe/yarns';
import { brand as valleyYarns } from './valley-yarns/yarns';
Expand Down Expand Up @@ -118,6 +119,7 @@ export const brands: Brand[] = [
sourceOfFibre,
stylecraft,
svartaFaret,
tessiland,
theWomensInstitute,
tricotCafe,
valleyYarns,
Expand Down
186 changes: 186 additions & 0 deletions src/lib/yarns/tessiland/chuck/colorways.ts
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;
9 changes: 9 additions & 0 deletions src/lib/yarns/tessiland/chuck/yarn.ts
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',
};
8 changes: 8 additions & 0 deletions src/lib/yarns/tessiland/yarns.ts
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],
};
10 changes: 10 additions & 0 deletions src/routes/changelog/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ import type { ChangelogItem } from '$lib/types';
export const entries: ChangelogItem[] = [
{
date: 'January, 2025',
notes: [
{
icon: ICONS.checkCircle,
text: `43 colorways`,
title: 'Added Yarn: Tessiland - Chuck',
},
],
version: '4.17.0',
},
{
notes: [
{
icon: ICONS.checkCircle,
Expand Down

0 comments on commit c830a80

Please sign in to comment.