1
0
Fork 0

Downcase colors

This commit is contained in:
Gregory Eremin 2015-03-27 20:32:39 +07:00
parent f2f68fc1ee
commit 86fbe67ec9
3 changed files with 26 additions and 26 deletions

View File

@ -54,16 +54,16 @@
opacity: 0.3; opacity: 0.3;
} }
.sac.item-0 .path-0 { fill: #EA8369; } .sac.item-0 .path-0 { fill: #ea8369; }
.sac.item-1 .path-1 { fill: #FCCD67; } .sac.item-1 .path-1 { fill: #fccd67; }
.sac.item-2 .path-2 { fill: #B5A9F2; } .sac.item-2 .path-2 { fill: #b5a9f2; }
.sac.item-3 .path-3 { fill: #9DD7F2; } .sac.item-3 .path-3 { fill: #9dd7f2; }
.sac.item-4 .path-4 { fill: #FFA3A4; } .sac.item-4 .path-4 { fill: #ffa3a4; }
.sac.item-5 .path-5 { fill: #A8EAA8; } .sac.item-5 .path-5 { fill: #a8eaa8; }
.sac.item-6 .path-6 { fill: #F9D08B; } .sac.item-6 .path-6 { fill: #f9d08b; }
.sac.item-7 .path-7 { fill: #6CCECB; } .sac.item-7 .path-7 { fill: #6ccecb; }
.sac.item-8 .path-8 { fill: #F9E559; } .sac.item-8 .path-8 { fill: #f9e559; }
.sac.item-9 .path-9 { fill: #FFBAD2; } .sac.item-9 .path-9 { fill: #ffbad2; }
.sac.item-0 .dot-0 { display: inline; } .sac.item-0 .dot-0 { display: inline; }
.sac.item-1 .dot-1 { display: inline; } .sac.item-1 .dot-1 { display: inline; }
.sac.item-2 .dot-2 { display: inline; } .sac.item-2 .dot-2 { display: inline; }

View File

@ -17,7 +17,7 @@
/* Colors */ /* Colors */
.logo.e { .logo.e {
background-color: #FCCD67; background-color: #fccd67;
} }
.logo.m, .logo.p { .logo.m, .logo.p {
background-color: #f39d41; background-color: #f39d41;

View File

@ -1,17 +1,17 @@
var Colors = [ var Colors = [
"#EA8369", "#ea8369",
"#FCCD67", "#fccd67",
"#B5A9F2", "#b5a9f2",
"#9DD7F2", "#9dd7f2",
"#FFA3A4", "#ffa3a4",
"#A8EAA8", "#a8eaa8",
"#F9D08B", "#f9d08b",
"#6CCECB", "#6ccecb",
"#F9E559", "#f9e559",
"#FFBAD2", "#ffbad2",
"#C8CFB4", "#c8cfb4",
"#C8CFB4", "#c8cfb4",
"#C8CFB4", "#c8cfb4",
"#C8CFB4", "#c8cfb4",
"#C8CFB4" "#c8cfb4"
]; ];