Skip to content

Instantly share code, notes, and snippets.

@jasonlemay
Created May 14, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonlemay/8e579e461f8203357ab6 to your computer and use it in GitHub Desktop.
Save jasonlemay/8e579e461f8203357ab6 to your computer and use it in GitHub Desktop.
Managing your CSS (GSS) files with variables and a theme
package com.company.project.client.resources;
public class Colors {
/* -> App colors -- */
public static final String C_PRIMARY = "#2054e8";
public static final String C_SECONDARY = "#bea885";
/* -> Default colors -- */
public static final String C_BACKGROUND = "#f0efef";
public static final String C_TEXT = "#323232";
public static final String C_TEXT_LIGHT = "#a1a1a1";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment