diff --git a/README.md b/README.md index ba5fdba..c31ca65 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,7 @@ A handmade collection of pro css tips tricks 🌟 1. [Rainbow Animation](#rainbow-animation) 1. [Use clamp() for Responsive Typography](#disable-textarea-resizing) 1. [Create A Sticky Footer](#create-a-sticky-footer) +1. [Change Themes of Form Elements](#change-themes-of-form-elements) ### Create Documentation Styled Layout @@ -726,6 +727,35 @@ footer{ [back to table of contents](#table-of-contents) +### Change Themes of Form Elements + +You can change the color theme of some of the form elements out there with pure CSS. + +```html +
+``` + +```css +.checkbox, .radio, .range, .progress { + accent-color: black; +} +``` + +