Skip to content

Commit

Permalink
added new yarn: Sandnes - Line
Browse files Browse the repository at this point in the history
  • Loading branch information
jdvlpr committed Feb 3, 2025
1 parent 69e58c4 commit 4005450
Show file tree
Hide file tree
Showing 5 changed files with 176 additions and 2 deletions.
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.18.21",
"version": "4.19.0",
"description": "Weather Data + Art! Web app for creating a temperature blanket",
"main": "index.html",
"private": true,
Expand Down
154 changes: 154 additions & 0 deletions src/lib/yarns/sandnes/line/colorways.ts
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: 'sandnes-garn.com',
href: 'https://www.sandnes-garn.se/line',
accessed: '2025-02-03',
},
colors: [
{
hex: '#f1ece8',
name: '1002',
},
{
hex: '#e3d2c5',
name: '1015',
},
{
hex: '#141416',
name: '1099',
},
{
hex: '#e2ad6f',
name: '2113',
},
{
hex: '#baa7a1',
name: '2331',
},
{
hex: '#f15423',
name: '3009',
},
{
hex: '#d4bfab',
name: '3011',
},
{
hex: '#a68070',
name: '3042',
},
{
hex: '#5c4240',
name: '3161',
},
{
hex: '#dbb1aa',
name: '3511',
},
{
hex: '#d41f1b',
name: '3819',
},
{
hex: '#b0a59b',
name: '3820',
},
{
hex: '#bb7875',
name: '4033',
},
{
hex: '#e39b9a',
name: '4213',
},
{
hex: '#da5376',
name: '4315',
},
{
hex: '#983742',
name: '4335',
},
{
hex: '#ce5f96',
name: '4626',
},
{
hex: '#a97a8c',
name: '4632',
},
{
hex: '#d9accf',
name: '5023',
},
{
hex: '#5f5f80',
name: '5252',
},
{
hex: '#a9c3ce',
name: '5930',
},
{
hex: '#708397',
name: '6032',
},
{
hex: '#4f6f95',
name: '6044',
},
{
hex: '#37414e',
name: '6061',
},
{
hex: '#2b292d',
name: '6080',
},
{
hex: '#86969d',
name: '6531',
},
{
hex: '#83cbc5',
name: '7213',
},
{
hex: '#9db9b3',
name: '7720',
},
{
hex: '#828876',
name: '8521',
},
{
hex: '#6a746a',
name: '8561',
},
{
hex: '#9ab785',
name: '8733',
},
{
hex: '#fae167',
name: '9004',
},
{
hex: '#616b4b',
name: '9062',
},
{
hex: '#ada989',
name: '9541',
},
{
hex: '#aaa34d',
name: '9825',
},
],
},
];
export default colorways;
9 changes: 9 additions & 0 deletions src/lib/yarns/sandnes/line/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: 'line',
name: 'Line',
weightId: 'w',
};
3 changes: 2 additions & 1 deletion src/lib/yarns/sandnes/yarns.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { Brand } from '$lib/types';
import { yarn as line } from './line/yarn';
import { yarn as peerGynt } from './peer-gynt/yarn';
import { yarn as petiteknitDoubleSunday } from './petiteknit-double-sunday/yarn';
import { yarn as sunday } from './sunday/yarn';
Expand All @@ -7,5 +8,5 @@ import { yarn as tynnPeerGynt } from './tynn-peer-gynt/yarn';
export const brand: Brand = {
name: 'Sandnes',
id: 'sandnes',
yarns: [peerGynt, petiteknitDoubleSunday, sunday, tynnPeerGynt],
yarns: [line, peerGynt, petiteknitDoubleSunday, sunday, tynnPeerGynt],
};
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: 'February, 2025',
notes: [
{
icon: ICONS.checkCircle,
text: `35 colorways`,
title: 'Added Yarn: Sandnes - Line',
},
],
version: '4.19.0',
},
{
notes: [
{
icon: ICONS.checkCircle,
Expand Down

0 comments on commit 4005450

Please sign in to comment.