Skip to content

Instantly share code, notes, and snippets.

@cloudhead
Created June 9, 2009 00:06
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 cloudhead/126158 to your computer and use it in GitHub Desktop.
Save cloudhead/126158 to your computer and use it in GitHub Desktop.
// Global vars
@main-color: #444;
@dark-color: #111;
@between-color: @main-color - @dark-color;
// Mixins
.theme {
color: #ccc;
background-color: #aaa;
}
.extra {
@main: #888;
.dark-borders {
border-color: .extra > @main / 2;
}
.light-borders {
border-color: .extra > @main;
}
.theme;
}
// Namespaces
.borders {
@thick: 4px;
@thin: 2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment