Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 911B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # color-hex-case
  2. Specify lowercase or uppercase for hex colors.
  3. <!-- prettier-ignore -->
  4. ```css
  5. a { color: #fff }
  6. /** ↑
  7. * This hex color */
  8. ```
  9. The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
  10. ## Options
  11. `string`: `"lower"|"upper"`
  12. ### `"lower"`
  13. The following patterns are considered violations:
  14. <!-- prettier-ignore -->
  15. ```css
  16. a { color: #FFF; }
  17. ```
  18. The following patterns are _not_ considered violations:
  19. <!-- prettier-ignore -->
  20. ```css
  21. a { color: #000; }
  22. ```
  23. <!-- prettier-ignore -->
  24. ```css
  25. a { color: #fff; }
  26. ```
  27. ### `"upper"`
  28. The following patterns are considered violations:
  29. <!-- prettier-ignore -->
  30. ```css
  31. a { color: #fff; }
  32. ```
  33. The following patterns are _not_ considered violations:
  34. <!-- prettier-ignore -->
  35. ```css
  36. a { color: #000; }
  37. ```
  38. <!-- prettier-ignore -->
  39. ```css
  40. a { color: #FFF; }
  41. ```