1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/webroot/rsrc/css/phui/phui-text.css
Chad Little e2f0003ff9 Implement color variables in CSS.
Summary: Added in color variables in most used places. Tweaked green to be a bit more serious.

Test Plan: Tested Tags, Error View, Timeline, Object Views, and Color Palette.

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D6244
2013-06-19 20:25:41 -07:00

55 lines
578 B
CSS

/**
* @provides phui-text-css
*/
/* Styles */
.phui-text-bold {
font-weight: bold;
}
.phui-text-uppercase {
text-transform: uppercase;
}
.phui-text-strike {
text-decoration: line-through;
}
/* Colors */
.phui-text-red {
color: {$red};
}
.phui-text-orange {
color: {$orange};
}
.phui-text-yellow {
color: {$yellow};
}
.phui-text-green {
color: {$green}
}
.phui-text-blue {
color: {$blue};
}
.phui-text-indigo {
color: {$indigo};
}
.phui-text-violet {
color: {$violet};
}
.phui-text-white {
color: #fff;
}
.phui-text-black {
color: #333;
}