1.0.2 • Published 7 years ago
tfl-style v1.0.2
tfl-style
less library containing all colours and fonts possible necessary for a TfL project
How to use
Install the npm package
npm install tfl-style --save
Create your own less file and reference the index less file of this project
import "./node_modules/tfl-style/_index.less"
reference the colours directly, or throught the colour and background classes (by using .#colour#-colour and .#colour#-background respectively)
.my-style{
background: @corporate-blue;
}
.my-second-style{
.corporate-blue-colour();
}
.my-third-style{
.corporate-blue-background();
}