diff options
Diffstat (limited to 'sonar-server/src/main/less/variables.less')
-rw-r--r-- | sonar-server/src/main/less/variables.less | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/sonar-server/src/main/less/variables.less b/sonar-server/src/main/less/variables.less new file mode 100644 index 00000000000..ab56248686b --- /dev/null +++ b/sonar-server/src/main/less/variables.less @@ -0,0 +1,62 @@ +/* + * Fonts + */ + +@baseFontSize: 13px; +@baseFontColor: #444; +@smallFontSize: 11px; +@headerFontSize: 16px; + + + +/* + * Colors + */ + +@black: #000000; +@white: #ffffff; +@grey: #efefef; +@darkGrey: #cdcdcd; + +@blue: #4b9fd5; +@red: #d4333f; +@green: #85bb43; +@yellow: #fede06; +@orange: #f90; + +@highlighted: @blue; +@contextBackground: lighten(@green, 40%); +@contextBorder: lighten(@green, 20%); + + +/* + * Icons + */ + +@iconSmallFontSize: 14px; +@iconFontSize: 16px; +@iconLineHeight: 12px; + +@severityBlockerColor: @red; +@severityCriticalColor: @red; +@severityMajorColor: @red; +@severityMinorColor: @green; +@severityInfoColor: @green; + +@statusOpenColor: @blue; +@statusConfirmedColor: @blue; +@statusReopenedColor: @blue; +@statusResolvedColor: @baseFontColor; +@statusClosedColor: @baseFontColor; + +@resolutionFixedColor: @baseFontColor; +@resolutionFalsePositiveColor: @baseFontColor; +@resolutionRemovedColor: @baseFontColor; + + + +/* + * Transitions + */ + +@defaultTransitionOptions: .3s ease; |