a zip code crypto-currency system good for red ONLY

note.ios.scss 478B

12345678910111213141516171819202122232425
  1. @import "../../themes/ionic.globals.ios";
  2. // iOS Note
  3. // --------------------------------------------------
  4. /// @prop - Text color of the note
  5. $note-ios-color: darken($list-ios-border-color, 10%) !default;
  6. .note-ios {
  7. color: $note-ios-color;
  8. }
  9. // Generate iOS Note Colors
  10. // --------------------------------------------------
  11. @each $color-name, $color-base, $color-contrast in get-colors($colors-ios) {
  12. .note-ios-#{$color-name} {
  13. color: $color-base;
  14. }
  15. }