1 package org.catacomb.interlish.structure; 2 3 import java.awt.Color; 4 5 public interface Colored { 6 7 Color getColor(); 8 9 }