Color Fill Accent icon
Used in edit mode for color changes - specifically the background for color reflection in UI. The Color Fill Accent icon is part of Microsoft's Fluent UI System Icons, available here in the regular (outlined) style on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Regular (outlined)
Use the Color Fill Accent icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { ColorFillAccent24Regular } from "@fluentui/react-icons";
export function Example() {
return <ColorFillAccent24Regular aria-label="Color Fill Accent" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_color_fill_accent_24_regular.svg" width="24" height="24" alt="Color Fill Accent"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.0524 15C13.3247 16.6094 14.6324 18 16.4998 18C18.3422 18 19.6398 16.6463 19.9357 15.0642C20.5516 15.2509 21 15.8231 21 16.5V19.5C21 20.3284 20.3284 21 19.5 21H4.5C3.67157 21 3 20.3284 3 19.5V16.5C3 15.6716 3.67157 15 4.5 15L7.58965 15C8.73388 16.0474 10.4934 16.0474 11.6377 15L13.0524 15Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/color_fill_accent_24_regular.svg";Details
| Name | Color Fill Accent |
|---|---|
| Styles | Regular (outlined) |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_color_fill_accent_24_regular.svg |
| React components | ColorFillAccent24Regular |
| License | MIT (© Microsoft Corporation) |