-
Notifications
You must be signed in to change notification settings - Fork 0
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
17 changed files
with
545 additions
and
436 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-env node */ | ||
require('@rushstack/eslint-patch/modern-module-resolution') | ||
|
||
module.exports = { | ||
root: true, | ||
'extends': [ | ||
'plugin:vue/vue3-essential', | ||
'eslint:recommended', | ||
'@vue/eslint-config-typescript', | ||
'@vue/eslint-config-prettier/skip-formatting' | ||
], | ||
parserOptions: { | ||
ecmaVersion: 'latest' | ||
} | ||
} |
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
import { type Scheme } from "../index" | ||
|
||
export default [{ | ||
background: "#7F9086", | ||
colors: ["#A29A68", "#676A4F", "#54573f", "#A63C24"], | ||
stroke: "#BFBED5", | ||
temp: "warm", | ||
theme: "bright", | ||
meta: { | ||
title: "Landscape with the Fall of Icarus", | ||
artist: "Pieter Bruegel the Elder", | ||
year: "1500", | ||
techniques: "Oil", | ||
} | ||
}] as Scheme[]; | ||
import { type Scheme } from '../index'; | ||
|
||
export default [ | ||
{ | ||
meta: { | ||
title: 'Landscape with the Fall of Icarus', | ||
artist: 'Pieter Bruegel the Elder', | ||
year: '1500', | ||
techniques: 'Oil', | ||
}, | ||
background: '#7F9086', | ||
colors: ['#A29A68', '#676A4F', '#54573f', '#A63C24'], | ||
stroke: '#BFBED5', | ||
temp: 'warm', | ||
theme: 'bright', | ||
}, | ||
] as Scheme[]; |
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
import { type Scheme } from "../index" | ||
|
||
export default [{ | ||
background: "#222221", | ||
colors: ["#b8a136", "#ac443a", "#428f70"], | ||
stroke: "#cccccc", | ||
temp: "warm", | ||
theme: "dark", | ||
meta: { | ||
title: "Fragment/sample from the colour keyboard of 1959", | ||
artist: "Le Corbusier", | ||
year: "1959", | ||
techniques: "unknown" | ||
} | ||
}] as Scheme[]; | ||
import { type Scheme } from '../index'; | ||
|
||
export default [ | ||
{ | ||
meta: { | ||
title: 'Fragment/sample from the colour keyboard of 1959', | ||
artist: 'Le Corbusier', | ||
year: '1959', | ||
techniques: 'unknown', | ||
}, | ||
background: '#222221', | ||
colors: ['#b8a136', '#ac443a', '#428f70'], | ||
stroke: '#cccccc', | ||
temp: 'warm', | ||
theme: 'dark', | ||
}, | ||
] as Scheme[]; |
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 |
---|---|---|
@@ -1,51 +1,56 @@ | ||
import { type Scheme } from "../index" | ||
import { type Scheme } from '../index'; | ||
|
||
export default [{ | ||
background: "#ece3e4", | ||
colors: ["#93b8e5", "#aa8153", "#eec667", "#b87143", "#e27c4b"], | ||
stroke: "#503e3c", | ||
theme: "bright", | ||
temp: "warm", | ||
meta: { | ||
artist: "Salvador Dalí", | ||
title: "Persistence Of Memory", | ||
year: "1931", | ||
techniques: "Oil" | ||
} | ||
}, { | ||
background: "#eae5e0", | ||
colors: ["#a40e00", "#758a27", "#11347b", "#286198"], | ||
stroke: "#11030a", | ||
temp: 'cold', | ||
theme: 'bright', | ||
meta: { | ||
artist: "Sonia Delaunay", | ||
title: "Contrepoint, circa", | ||
year: "1970", | ||
techniques: "Lithography" | ||
} | ||
},{ | ||
background: "#1C2424", | ||
colors: ["#3D55A8", "#3FA622", "#F6F7F1", "#463D33"], | ||
stroke: "#6A6157", | ||
temp : "cold", | ||
theme: "dark", | ||
meta: { | ||
title: "Stained glass composition, Woman", | ||
artist: "Theo van Doesburg", | ||
year: "1917", | ||
techniques: "Glass", | ||
} | ||
}, { | ||
background: "#657359", | ||
colors: ["#9AA582", "#8B775F", "#D7C9BE"], | ||
stroke: "#D7C9BE", | ||
temp: "cold", | ||
theme: "dark", | ||
meta: { | ||
title: "The Large Piece of Turf", | ||
artist: "Albrecht Dürer", | ||
year: "1503", | ||
techniques: "Watercolor" | ||
} | ||
},] as Scheme[] | ||
export default [ | ||
{ | ||
meta: { | ||
artist: 'Salvador Dalí', | ||
title: 'Persistence Of Memory', | ||
year: '1931', | ||
techniques: 'Oil', | ||
}, | ||
background: '#ece3e4', | ||
colors: ['#93b8e5', '#aa8153', '#eec667', '#b87143', '#e27c4b'], | ||
stroke: '#503e3c', | ||
theme: 'bright', | ||
temp: 'warm', | ||
}, | ||
{ | ||
meta: { | ||
artist: 'Sonia Delaunay', | ||
title: 'Contrepoint, circa', | ||
year: '1970', | ||
techniques: 'Lithography', | ||
}, | ||
background: '#eae5e0', | ||
colors: ['#a40e00', '#758a27', '#11347b', '#286198'], | ||
stroke: '#11030a', | ||
temp: 'cold', | ||
theme: 'bright', | ||
}, | ||
{ | ||
meta: { | ||
title: 'Stained glass composition, Woman', | ||
artist: 'Theo van Doesburg', | ||
year: '1917', | ||
techniques: 'Glass', | ||
}, | ||
background: '#1C2424', | ||
colors: ['#3D55A8', '#3FA622', '#F6F7F1', '#463D33'], | ||
stroke: '#6A6157', | ||
temp: 'cold', | ||
theme: 'dark', | ||
}, | ||
{ | ||
meta: { | ||
title: 'The Large Piece of Turf', | ||
artist: 'Albrecht Dürer', | ||
year: '1503', | ||
techniques: 'Watercolor', | ||
}, | ||
background: '#657359', | ||
colors: ['#9AA582', '#8B775F', '#D7C9BE'], | ||
stroke: '#D7C9BE', | ||
temp: 'cold', | ||
theme: 'dark', | ||
}, | ||
] as Scheme[]; |
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 |
---|---|---|
@@ -1,40 +1,43 @@ | ||
import { type Scheme } from "../index" | ||
import { type Scheme } from '../index'; | ||
|
||
export default [{ | ||
background: "#1b1006", | ||
colors: ["#4c2d15", "#634a2c", "#dfb484"], | ||
stroke: "#788457", | ||
temp: "warm", | ||
theme: "dark", | ||
meta: { | ||
title: "Self-portrait as the Allegory of Painting or La Pittura", | ||
artist: "Artemisia Gentileschi", | ||
year: "1639", | ||
techniques: "Oil" | ||
} | ||
}, { | ||
background: "#e2d9cd", | ||
colors: ["#383739", "#B06438", "#59535C", "#302927"], | ||
stroke: "#655C44", | ||
temp: "warm", | ||
theme: "bright", | ||
meta: { | ||
title: "Jean Genet Portrait", | ||
artist: "Alberto Giacometti", | ||
year: "1954", | ||
techniques: "Oil" | ||
} | ||
}, { | ||
background: "#050506", | ||
colors: ["#766a4e", "#b07443", "#fab38b"], | ||
stroke: "#0a443b", | ||
temp: "warm", | ||
theme: "dark", | ||
meta: { | ||
title: "Cookie and Sharon dancing in the Back Room", | ||
artist: "Nan Goldin", | ||
year: "1976", | ||
techniques: "Cibachrome" | ||
|
||
} | ||
}] as Scheme[] | ||
export default [ | ||
{ | ||
meta: { | ||
title: 'Self-portrait as the Allegory of Painting or La Pittura', | ||
artist: 'Artemisia Gentileschi', | ||
year: '1639', | ||
techniques: 'Oil', | ||
}, | ||
background: '#1b1006', | ||
colors: ['#4c2d15', '#634a2c', '#dfb484'], | ||
stroke: '#788457', | ||
temp: 'warm', | ||
theme: 'dark', | ||
}, | ||
{ | ||
meta: { | ||
title: 'Jean Genet Portrait', | ||
artist: 'Alberto Giacometti', | ||
year: '1954', | ||
techniques: 'Oil', | ||
}, | ||
background: '#e2d9cd', | ||
colors: ['#383739', '#B06438', '#59535C', '#302927'], | ||
stroke: '#655C44', | ||
temp: 'warm', | ||
theme: 'bright', | ||
}, | ||
{ | ||
meta: { | ||
title: 'Cookie and Sharon dancing in the Back Room', | ||
artist: 'Nan Goldin', | ||
year: '1976', | ||
techniques: 'Cibachrome', | ||
}, | ||
background: '#050506', | ||
colors: ['#766a4e', '#b07443', '#fab38b'], | ||
stroke: '#0a443b', | ||
temp: 'warm', | ||
theme: 'dark', | ||
}, | ||
] as Scheme[]; |
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 |
---|---|---|
@@ -1,27 +1,42 @@ | ||
import { type Scheme } from "../index" | ||
import { type Scheme } from '../index'; | ||
|
||
export default [{ | ||
background: "#eddebf", | ||
colors: ["#53a4b7", "#bf9a91", "#a28671", "#88c9e5", "#317ca6"], | ||
stroke: "#40696b", | ||
temp: "warm", | ||
theme: "bright", | ||
meta: { | ||
title: "A Bigger Splash", | ||
artist: "David Hockney", | ||
year: "1967", | ||
techniques: "Acrylic", | ||
} | ||
}, { | ||
background: "#ebcf61", | ||
colors: ["#c56e29", "#879981", "#cb4f29", "#2d74a8", "#4c5947"], | ||
stroke: "#2c211d", | ||
temp: "warm", | ||
theme: "bright", | ||
meta: { | ||
title: "New York Movie", | ||
artist: "Edward Hopper", | ||
year: "1939", | ||
techniques: "Oil" | ||
} | ||
}] as Scheme[] | ||
export default [ | ||
{ | ||
meta: { | ||
title: 'A Bigger Splash', | ||
artist: 'David Hockney', | ||
year: '1967', | ||
techniques: 'Acrylic', | ||
}, | ||
background: '#eddebf', | ||
colors: ['#53a4b7', '#bf9a91', '#a28671', '#88c9e5', '#317ca6'], | ||
stroke: '#40696b', | ||
temp: 'warm', | ||
theme: 'bright', | ||
}, | ||
{ | ||
meta: { | ||
title: 'Divisions (Roach and Surface)', | ||
artist: 'Carsten Höller', | ||
year: '2016', | ||
techniques: | ||
'Acrylic glass, paint, stainless steel, screws, and roach (fish taxidermy: Matthias Fahrni)', | ||
}, | ||
background: '#df4b1d', | ||
colors: ['#e76124', '#e67241', '#e89470', '#dcaf98', '#debfad'], | ||
stroke: '#331107', | ||
}, | ||
{ | ||
meta: { | ||
title: 'New York Movie', | ||
artist: 'Edward Hopper', | ||
year: '1939', | ||
techniques: 'Oil', | ||
}, | ||
background: '#ebcf61', | ||
colors: ['#c56e29', '#879981', '#cb4f29', '#2d74a8', '#4c5947'], | ||
stroke: '#2c211d', | ||
temp: 'warm', | ||
theme: 'bright', | ||
}, | ||
] as Scheme[]; |
Oops, something went wrong.