Skip to content

Commit

Permalink
Kupka, Roscha & Schmidt
Browse files Browse the repository at this point in the history
  • Loading branch information
nclslbrn committed Jun 30, 2024
1 parent 061db55 commit b4e4754
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/artists/b.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const bosch: Scheme = {
techniques: "Oil",
},
background: "#D8D2B5",
colors: ["#D79967", "#B41E30", "#69705A", ""],
colors: ["#D79967", "#B41E30", "#69705A"],
stroke: "#474C4B",
temp: "warm",
theme: "bright",
Expand Down
25 changes: 24 additions & 1 deletion src/artists/k.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,27 @@ const klint: Scheme = {
theme: "bright",
};

export { kandinsky, kelly, khalil, kiefer, klee, klint };
const kupka: Scheme = {
meta: {
title:
"Mme Kupka among Verticals",
artist: "František Kupka",
year: "1910-11",
techniques: "Oil",
},
background: "#6a505a",
colors: [
"#c49572",
"#a76b57",
"#a5a493",
"#838374",
"#5b5f7f",
"#272831",
"#98412a",
],
stroke: "#85222c",
temp: "warm",
theme: "bright",
};

export { kandinsky, kelly, khalil, kiefer, klee, klint, kupka };
16 changes: 15 additions & 1 deletion src/artists/r.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,18 @@ const rozanova: Scheme = {
theme: "bright",
};

export { rauschenberg, riley, rothko, rozanova };
const ruscha: Scheme = {
meta: {
title: "Standard Station",
artist: "Edward Ruscha",
year: "1916",
techniques: "Screenprint",
},
background: "#ECE1D2",
colors: ["#C6071F", "#DF0220", "#B7B0AA", "#EBE0D1", "#EFE3D5"],
stroke: "#202D49",
temp: "warm",
theme: "bright",
};

export { rauschenberg, riley, rothko, rozanova, ruscha };
16 changes: 15 additions & 1 deletion src/artists/s.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@ const saville: Scheme = {
theme: "bright",
};

const schmidt: Scheme = {
meta: {
title: "Offset Buch und Werbekunst, Jg. 7",
artist: "Joost Schmidt",
year: "1926",
techniques: "Book, letterpress and offset printed",
},
background: "#E3D4C0",
colors: ["#999998", "#C49424", "#D25146", "#403F3A"],
stroke: "#59728C",
temp: "warm",
theme: "bright",
};

const sherman: Scheme = {
meta: {
title: "Untitled #92",
Expand All @@ -28,4 +42,4 @@ const sherman: Scheme = {
theme: "dark",
};

export { saville, sherman };
export { saville, schmidt, sherman };
9 changes: 6 additions & 3 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import { fleischmann, freud } from "./artists/f";
import { gentileschi, giacometti, goldin, greco } from "./artists/g";
import { hockney, hopper } from "./artists/h";
import { judd, johns } from "./artists/j";
import { kandinsky, kelly, khalil, kiefer, klee, klint } from "./artists/k";
import { kandinsky, kelly, khalil, kiefer, klee, klint, kupka } from "./artists/k";
import { lissitzky, lewitt } from "./artists/l";
import { magritte, malevich, martin, molnar, moss, mucha, mura } from "./artists/m";
import { nauman, newman } from "./artists/n";
import { okeefe, orozco } from "./artists/o";
import { picasso, pollard, pollock, popova } from "./artists/p";
import { rauschenberg, riley, rothko, rozanova } from "./artists/r";
import { saville, sherman } from "./artists/s";
import { rauschenberg, riley, rothko, rozanova, ruscha } from "./artists/r";
import { saville, schmidt, sherman } from "./artists/s";
import { taeuberArp, turner } from "./artists/t";
import { vasarely, vermeer } from "./artists/v";
import { yoshitoshi } from "./artists/y";
Expand Down Expand Up @@ -55,6 +55,7 @@ const entries: EntryScheme = {
kiefer,
klee,
klint,
kupka,
lissitzky,
lewitt,
magritte,
Expand All @@ -76,7 +77,9 @@ const entries: EntryScheme = {
riley,
rothko,
rozanova,
ruscha,
saville,
schmidt,
sherman,
taeuberArp,
turner,
Expand Down

0 comments on commit b4e4754

Please sign in to comment.