Branding

Exhibition Branding

Benton Clouds Exhibition

An icon-driven identity to represent the ever-changing nature of clouds.

Student Work

BFA Senior Show

Pixels to Stitches: Materializing Digital Information

Creative Direction

Published Works

Print Publications – Nutmeg Publishing, University of Connecticut

Student Work

Open magazine page with the heading 'intro' and black text, featuring a colorful woven textile with red, purple, and black yarns, displayed on a metallic stand at the Tilburg Textile Museum.
Open book showing a black and white photograph of people weaving and a section of text titled 'Communicating through fiber'.

Sheila Hicks Publication

Graphic Design II | Visual Systems

A white booklet with abstract black patterns and the word 'PAIRS' on the cover, resting on a gray surface.

Student Work

Colorful packaging with the word 'PARS' in bold orange letters, decorated with various splashes and patterns of orange and pink dots on a white background, placed on a gray surface.
An open book with pages containing graphic design elements, including pink backgrounds, blue rectangles, and a pattern of small curved lines, on a gray surface.
Open colorful booklet with geometric and abstract patterns, on a gray background.

Pairs

Pairs Riso Printed Publication
Won Gold at the 47th annual CADC Award Show

let x = 50;
let y = 200;
let xSpeed = 3;
let ySpeed = 2;

function setup() {
  createCanvas(400, 400);
}

function draw() {
  background(220);

  // Draw the circle
  fill(0, 150, 255);
  noStroke();
  ellipse(x, y, 50, 50);

  // Move the circle
  x += xSpeed;
  y += ySpeed;

  // Bounce off the edges
  if (x > width - 25 || x < 25) {
    xSpeed *= -1;
  }

  if (y > height - 25 || y < 25) {
    ySpeed *= -1;
  }
}