﻿// Font to be used for headers and titles 
@title-font: 'PT Sans', sans-serif;

// Font to be used for regular text
@text-font: 'PT Serif', serif;
@text-color: #000;
@text-size: 10.5pt;

// Use this mixin to output regular text styles, don't use for anything which doesn't look like regular text (captions, labels, etc)
.text(@color: @text-color)
{
	font-family: @text-font;
	font-size: @text-size;
	color: @color;
}

// Accent or primary theme color (blue in default theme)
@accent-color: #1e77bd; // royal blue
@accent-text-color: #fff;
@secondary-color: #6993a9; // slate blue

// Use this mixin to middle align text vertically in block container
.vertical-align-middle(@height) 
{
	vertical-align: middle;
	height: @height;
	line-height: @height;
}

// links 
@link-normal-color: #1a3c58;
@link-hover-color: #1a3c58;

// page header
@page-header-background: "";

@header-background: "";