mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
e2f0003ff9
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
55 lines
578 B
CSS
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;
|
|
}
|