If you're using the Sass version of Foundation, add this line to your main Sass file to export the `<meter>` CSS:
```scss
-@import foundation-progress-element;
+@import foundation-meter-element;
```
The meter automatically colors itself based on the current values, and the defined low, medium, and high ranges. [Learn more about the mechanics of `<meter>` values.](https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Forms/The_native_form_widgets#Meters_and_progress_bars)
```html_example
-<meter value="30" min="0" low="33" medium="66" optimum="100" max="100"></meter>
-<meter value="50" min="0" low="33" medium="66" optimum="100" max="100"></meter>
-<meter value="100" min="0" low="33" medium="66" optimum="100" max="100"></meter>
+<meter value="30" min="0" low="33" high="66" optimum="100" max="100"></meter>
+<meter value="50" min="0" low="33" high="66" optimum="100" max="100"></meter>
+<meter value="100" min="0" low="33" high="66" optimum="100" max="100"></meter>
```