change color on up-to-date badge to a brighter green

This commit is contained in:
Sam Rijs 2018-02-14 08:28:13 +11:00
parent 831ad7a9ae
commit 4bdebcaaad
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="154" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="154" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path fill="#555" d="M0 0h85v20H0z"/><path fill="#97CA00" d="M85 0h69v20H85z"/><path fill="url(#b)" d="M0 0h154v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110"><text x="435" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="750">dependencies</text><text x="435" y="140" transform="scale(.1)" textLength="750">dependencies</text><text x="1185" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="590">up to date</text><text x="1185" y="140" transform="scale(.1)" textLength="590">up to date</text></g> </svg> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="152" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="152" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path fill="#555" d="M0 0h85v20H0z"/><path fill="#4c1" d="M85 0h67v20H85z"/><path fill="url(#b)" d="M0 0h152v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110"><text x="435" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="750">dependencies</text><text x="435" y="140" transform="scale(.1)" textLength="750">dependencies</text><text x="1175" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="570">up to date</text><text x="1175" y="140" transform="scale(.1)" textLength="570">up to date</text></g> </svg>

Before

Width:  |  Height:  |  Size: 978 B

After

Width:  |  Height:  |  Size: 975 B

View file

@ -1,6 +1,6 @@
//pub mod templates; //pub mod templates;
pub static BADGE_UPTODATE_SVG: &'static [u8; 978] = pub static BADGE_UPTODATE_SVG: &'static [u8; 975] =
include_bytes!("../../assets/badges/up-to-date.svg"); include_bytes!("../../assets/badges/up-to-date.svg");
pub static BADGE_OUTDATED_SVG: &'static [u8; 974] = pub static BADGE_OUTDATED_SVG: &'static [u8; 974] =
include_bytes!("../../assets/badges/outdated.svg"); include_bytes!("../../assets/badges/outdated.svg");