CSS color-adjust Property Last Updated : 16 Jul, 2020 Comments Improve Suggest changes Like Article Like Report The Color-adjust property has proved itself to be useful when it comes to printing documents. The browsers can change the colors and the appearance of the element so as to prevent that color-adjust property is used. Syntax: color-adjust: economy | exact Property values: economy: In this, the browser may leave the images in order to adjust the colors of the text such that making it more readable. Syntax: color-adjust: economy Example: html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <style> #box{ width: 300px; height: auto; border-radius: 50% 50%; background-color: black; background-image: linear-gradient( rgba(17, 199, 0, 0.5), rgb(255, 255, 255)); color: rgb(0, 0, 0); text-align: center; font: 24px "Helvetica", sans-serif; display: grid; justify-content: center; color-adjust: economy; } </style> <body> <h1>color-adjust: economy</h1> <div id="box"> <p>Geeks for Geeks</p> </div> </body> </html> Output: exact: In this, the appearance of the page must not change without the user's request. Syntax: color-adjust: exact Example: html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <style> #box{ width: 300px; height: auto; border-radius: 50% 50%; background-color: black; background-image: linear-gradient( rgba(17, 199, 0, 0.5), rgb(255, 255, 255)); color:#fff; text-align: center; font: 24px "Helvetica", sans-serif; display: grid; justify-content: center; color-adjust: exact; } </style> <body> <h1>color-adjust: exact</h1> <div id="box"> <p>Geeks for Geeks</p> </div> </body> </html> Output: Browsers Supported: FirefoxOperaMozilla firefoxSafariEdge Comment More infoAdvertise with us Next Article CSS color-adjust Property T tarun007 Follow Improve Article Tags : Web Technologies HTML CSS CSS-Properties Similar Reads CSS caret-color Property This property is used to set the color of the cursor in inputs, text areas, or other editable areas.Default Value: autoSyntax: caret-color: auto|color;Property values: auto: It has a default value. It uses the current-color in the web browser.color: It is used to specify the color value used for the 2 min read CSS color Property The color property is used to specify the text color. It accepts color values as color name, HEX, RGB, RGBA, HSL, or HSLA values. This property plays a crucial role in defining text appearance, ensuring readability, and enhancing the overall design aesthetics of web content.Syntaxcolor: color | init 3 min read CSS accent-color Property The accent-color property in CSS specifies the color of user interface elements and controls, such as checkboxes, radio buttons, range sliders, and progress indicators. This property allows for enhanced customization of form controls to match the design of your website.Syntax:accent-color: auto | 2 min read CSS border-color Property The CSS border-color property allows developers to define the color of an element's border, enhancing the visual design of a webpage. It works in conjunction with the border property to provide control over the appearance of borders using various color values like-named colors, hex codes, or RGB val 5 min read CSS background-color Property The background-color CSS property sets the background color of an element, allowing you to create a solid color backdrop. You can define the color using named colors, hexadecimal values, RGB, RGBA, HSL, or HSLA. This property applies to both the content and padding areas of the element.By using the 4 min read Like