- CSS Tutorial
- CSS - Home
- CSS - Introduction
- CSS - Syntax
- CSS - Selectors
- CSS - Inclusion
- CSS - Measurement Units
- CSS - Colors
- CSS - Backgrounds
- CSS - Fonts
- CSS - Text
- CSS - Images
- CSS - Links
- CSS - Tables
- CSS - Borders
- CSS - Border Block
- CSS - Border Inline
- CSS - Margins
- CSS - Lists
- CSS - Padding
- CSS - Cursor
- CSS - Outlines
- CSS - Dimension
- CSS - Scrollbars
- CSS - Inline Block
- CSS - Dropdowns
- CSS - Visibility
- CSS - Overflow
- CSS - Clearfix
- CSS - Float
- CSS - Arrows
- CSS - Resize
- CSS - Quotes
- CSS - Order
- CSS - Position
- CSS - Hyphens
- CSS - Hover
- CSS - Display
- CSS - Focus
- CSS - Zoom
- CSS - Translate
- CSS - Height
- CSS - Hyphenate Character
- CSS - Width
- CSS - Opacity
- CSS - Z-Index
- CSS - Bottom
- CSS - Navbar
- CSS - Overlay
- CSS - Forms
- CSS - Align
- CSS - Icons
- CSS - Image Gallery
- CSS - Comments
- CSS - Loaders
- CSS - Attr Selectors
- CSS - Combinators
- CSS - Root
- CSS - Box Model
- CSS - Counters
- CSS - Clip
- CSS - Writing Mode
- CSS - Unicode-bidi
- CSS - min-content
- CSS - All
- CSS - Inset
- CSS - Isolation
- CSS - Overscroll
- CSS - Justify Items
- CSS - Justify Self
- CSS - Tab Size
- CSS - Pointer Events
- CSS - Place Content
- CSS - Place Items
- CSS - Place Self
- CSS - Max Block Size
- CSS - Min Block Size
- CSS - Mix Blend Mode
- CSS - Max Inline Size
- CSS - Min Inline Size
- CSS - Offset
- CSS - Accent Color
- CSS - User Select
- CSS Advanced
- CSS - Grid
- CSS - Grid Layout
- CSS - Flexbox
- CSS - Visibility
- CSS - Positioning
- CSS - Layers
- CSS - Pseudo Classes
- CSS - Pseudo Elements
- CSS - @ Rules
- CSS - Text Effects
- CSS - Paged Media
- CSS - Printing
- CSS - Layouts
- CSS - Validations
- CSS - Image Sprites
- CSS - Important
- CSS - Data Types
- CSS3 Tutorial
- CSS3 - Tutorial
- CSS - Rounded Corner
- CSS - Border Images
- CSS - Multi Background
- CSS - Color
- CSS - Gradients
- CSS - Box Shadow
- CSS - Box Decoration Break
- CSS - Caret Color
- CSS - Text Shadow
- CSS - Text
- CSS - 2d transform
- CSS - 3d transform
- CSS - Transition
- CSS - Animation
- CSS - Multi columns
- CSS - Box Sizing
- CSS - Tooltips
- CSS - Buttons
- CSS - Pagination
- CSS - Variables
- CSS - Media Queries
- CSS - Functions
- CSS - Math Functions
- CSS - Masking
- CSS - Shapes
- CSS - Style Images
- CSS - Specificity
- CSS - Custom Properties
- CSS Responsive
- CSS RWD - Introduction
- CSS RWD - Viewport
- CSS RWD - Grid View
- CSS RWD - Media Queries
- CSS RWD - Images
- CSS RWD - Videos
- CSS RWD - Frameworks
- CSS References
- CSS - Questions and Answers
- CSS - Quick Guide
- CSS - References
- CSS - Color References
- CSS - Web browser References
- CSS - Web safe fonts
- CSS - Units
- CSS - Animation
- CSS Resources
- CSS - Useful Resources
- CSS - Discussion
CSS - accent-color Property
CSS accent-color property determines the accent color applied to user-interface controls created by certain elements.
This property allows browsers to automatically adjust certain elements (like form inputs, buttons, etc.) to use the specified color as the accent color, typically for user interface elements where the browser can adjust the color to match the theme or user preferences.
The following HTML elements are currently affected by accent-color in browsers that support it:
The accent color assigned to each user agent varies to ensure readability and contrast. This color is only applied to particular user interface controls in states where it is applicable.
Possible Values
auto − Represents a UA-chosen color that should match the platform's accent color.
<color> − Defines which color will be used as the accent color.
Applies To
All elements.
Syntax
Keyword Values
accent-color: auto;
<color> Values
accent-color: darkred; accent-color: #5729e9; accent-color: rgb(0 200 0); accent-color: hsl(228 4% 24%);
CSS accent-color - auto Value
The following example demonstrates the accent-color: auto property automatically applies an appropriate accent color −
<html> <head> <style> input { accent-color: auto; } </style> </head> <body> <input type="checkbox" id="check" checked> <label for="check">accent-color: auto</label> </body> </html>
CSS accent-color - <color> Value
The following example demonstrates how to use accent-color property to set different accent colors for checkboxes. The first checkbox has red color and the second one with yellow color −
<html> <head> <style> #check1 { accent-color: red; } #check2 { accent-color: yellow; } </style> </head> <body> <input type="checkbox" id="check1" checked> <label for="check1">Red</label></br> <input type="checkbox" id="check2" checked> <label for="check2">Yellow</label> </body> </html>
CSS accent-color With Different HTML Element
The following example demonstrates how to use accent-color property for different HTML elements−
<html> <head> <style> input[type=radio] { accent-color: red; } input[type=range] { accent-color: rgb(55, 255, 0); } progress { accent-color: violet; } </style> </head> <body> <h3>accent-color for radio buttons</h3> <input type="radio" id="radio1" name="gender" checked> <label for="radio1">Male</label></br> <input type="radio" id="radio2" name="gender"> <label for="radio2">Female</label> <h3>accent-color for a range</h3> <label for="ran">Range</label></br> <input type="range" id="ran" name="range_val" min="0" max="5"> <h3>accent-color for a progress</h3> <label for="prog">Progress</label></br> <progress id="prog" name="prog_val"value="60" max="100">60%</progress> </body> </html>