Skip to content

Commit

Permalink
Bacon, Drei, Freud, Judd & Kelly
Browse files Browse the repository at this point in the history
  • Loading branch information
nclslbrn committed Dec 11, 2023
1 parent 42cfe04 commit eaf19cc
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/artists/b.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
import { type Scheme } from '../index';

export default [
{
meta: {
title:
'Study for Portrait, Number IV (After the Life Mask of William Blake)',
artist: 'Francis Bacon',
year: '1956',
techniques: 'Oil',
},
background: '#282e26',
colors: ['#495955', '#625d51', '#c3655c'],
stroke: '#3d4649',
temp: 'warm',
theme: 'dark',
},
{
meta: {
title: 'Landscape with the Fall of Icarus',
Expand Down
13 changes: 13 additions & 0 deletions src/artists/d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,19 @@ export default [
temp: 'cold',
theme: 'dark',
},
{
meta: {
title: 'Transgressed crystals',
artist: 'Lia Drei',
year: '1974',
techniques: 'acrylic',
},
background: '#f42a12',
stroke: '#35363a',
colors: ['#cdcccc', '#398fc3', '#fa7e00', '#1e988e', '#cec401', '#304eba'],
temp: 'cold',
theme: 'bright',
},
{
meta: {
title: 'The Large Piece of Turf',
Expand Down
17 changes: 17 additions & 0 deletions src/artists/f.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { type Scheme } from '../index';

export default [
{
meta: {
title: 'Woman with a Daffodil summer',
artist: 'Lucian Freud',
year: '1945',
techniques: 'Oil',
},
background: '#d8d5c6',
colors: ['#5f868a', '#483f31', '#a6977c', '#c4c360', '#c5b79c'],
stroke: '#133938',
theme: 'bright',
temp: 'warm',
},
] as Scheme[];
17 changes: 17 additions & 0 deletions src/artists/j.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { type Scheme } from '../index';

export default [
{
meta: {
title: 'Untitled',
artist: 'Donald Judd',
year: '1991',
techniques: 'Enameled aluminum',
},
background: '#303032',
colors: ['#e6a414', '#feb304', '#f8ec40', '#f2f7fb', '#41a7b3', '#1d76a4'],
stroke: '#bc3b1e',
temp: 'warm',
theme: 'dark',
},
] as Scheme[];
13 changes: 13 additions & 0 deletions src/artists/k.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@ export default [
temp: 'warm',
theme: 'bright',
},
{
meta: {
title: 'Colors for a Large Wall',
artist: 'Ellsworth Kelly',
year: '1951',
techniques: 'Oil',
},
background: '#e7dfd4',
colors: ['#86b35e', '#315daf', '#e4c51a', '#d25462', '#c31615', '#86569a'],
stroke: '#2a201d',
temp: 'warm',
theme: 'bright',
},
{
meta: {
title: 'Fire evening',
Expand Down
4 changes: 4 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,10 @@ export interface DefaultArgs extends Args {
import b from './artists/b';
import c from './artists/c';
import d from './artists/d';
import f from './artists/f';
import g from './artists/g';
import h from './artists/h';
import j from './artists/j';
import k from './artists/k';
import l from './artists/l';
import m from './artists/m';
Expand All @@ -46,8 +48,10 @@ const palettes: Scheme[] = [
...b,
...c,
...d,
...f,
...g,
...h,
...j,
...k,
...l,
...m,
Expand Down

0 comments on commit eaf19cc

Please sign in to comment.