1
0
mirror of https://github.com/thangisme/notes.git synced 2024-07-24 06:24:19 -04:00
notes/_sass/utilities/_colors.scss

86 lines
1.1 KiB
SCSS
Raw Normal View History

2017-03-24 09:47:37 -04:00
//
// Utility classes for colors
//
// Text colors
.text-grey-dk-000 {
color: $grey-dk-000 !important;
2017-03-09 13:16:08 -05:00
}
2017-03-24 09:47:37 -04:00
.text-grey-dk-100 {
color: $grey-dk-100 !important;
2017-03-09 13:16:08 -05:00
}
2017-03-24 09:47:37 -04:00
.text-grey-dk-200 {
color: $grey-dk-200 !important;
2017-03-09 13:16:08 -05:00
}
2017-03-24 09:47:37 -04:00
.text-grey-dk-300 {
color: $grey-dk-300 !important;
2017-03-09 13:16:08 -05:00
}
.text-grey-lt-000 {
color: $grey-lt-000 !important;
}
.text-grey-lt-100 {
color: $grey-lt-100 !important;
}
.text-grey-lt-200 {
color: $grey-lt-200 !important;
}
.text-grey-lt-300 {
color: $grey-lt-300 !important;
}
2017-03-24 09:47:37 -04:00
.text-blue-000 {
color: $blue-000 !important;
2017-03-09 13:16:08 -05:00
}
2017-03-24 09:47:37 -04:00
.text-blue-100 {
color: $blue-100 !important;
2017-03-09 13:16:08 -05:00
}
2017-03-24 09:47:37 -04:00
.text-blue-200 {
color: $blue-200 !important;
2017-03-09 13:16:08 -05:00
}
2017-03-24 09:47:37 -04:00
.text-blue-300 {
color: $blue-300 !important;
}
.text-green-000 {
color: $green-000 !important;
}
.text-green-100 {
color: $green-100 !important;
}
.text-green-200 {
color: $green-200 !important;
}
.text-green-300 {
color: $green-300 !important;
}
.text-purple-000 {
color: $purple-000 !important;
}
.text-purple-100 {
color: $purple-100 !important;
}
.text-purple-200 {
color: $purple-200 !important;
}
.text-purple-300 {
color: $purple-300 !important;
2017-03-09 13:16:08 -05:00
}