Skip to content

Commit

Permalink
add Rauschenberg
Browse files Browse the repository at this point in the history
  • Loading branch information
nclslbrn committed Dec 29, 2023
1 parent 7ecdd16 commit 603becd
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
24 changes: 23 additions & 1 deletion src/artists/r.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
import { Scheme } from './../type.d';

const rauschenberg: Scheme = {
meta: {
title: 'Collection',
artist: 'Robert Rauschenberg',
year: '1954',
techniques: 'Oil, paper, fabric, wood, and metal',
},
background: '#274062',
colors: [
'#a5694e',
'#684f44',
'#dbb771',
'#c3a08e',
'#dcc8b7',
'#a32d25',
'#c19970',
],
stroke: '#de9e50',
temp: 'warm',
theme: 'bright',
};

const riley: Scheme = {
meta: {
title: 'Movement in Squares',
Expand Down Expand Up @@ -36,4 +58,4 @@ const rothko: Scheme = {
theme: 'bright',
};

export { riley, rothko };
export { rauschenberg, riley, rothko };
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { magritte, malevich, martin, mura } from './artists/m';
import { newman } from './artists/n';
import { okeefe } from './artists/o';
import { picasso, pollard, pollock } from './artists/p';
import { riley, rothko } from './artists/r';
import { rauschenberg, riley, rothko } from './artists/r';
import { saville, sherman } from './artists/s';
import { turner } from './artists/t';
import { vasarely, vermeer } from './artists/v';
Expand Down Expand Up @@ -59,6 +59,7 @@ const entries: EntryScheme = {
picasso,
pollard,
pollock,
rauschenberg,
riley,
rothko,
saville,
Expand Down

0 comments on commit 603becd

Please sign in to comment.