Getting Color Codes from the Images Using MS Paint
I am going to provide you the easiest way by which you can get the color code of any image and can use in your css classes or anywhere you want ...
Prerequisites : Before starting this, Please ensure you have following things installed in your computer.
1. Windows (Any Version)
2. Microsoft Paint
So lets start with the process.
Step 1: Open the image in paint from which you want the color code as shown below. Suppose you want the color code of the image marked in red square.
Step 2: Now Click on the color picker button from the MS Paint toolbar and click on the red square marked area. you will see the color comes in the color toolbar of the ms paint. See the below pic
Step 3:Now click on the Edit Colors tool of color toolbar and you will get a popup with the color detail as shown below.
Step 4: Here in this example you have Red=226, Green=205 and Blue=100. Now either you can convert this to hexadecimal equivalent code or simply use the RGB color code in your CSS as shown below
Hope it will be helpful to you all in your web designing or other related work. Don't forget to put your valuable feedback/ suggestions as a comment below.
1. Windows (Any Version)
2. Microsoft Paint
So lets start with the process.
Step 1: Open the image in paint from which you want the color code as shown below. Suppose you want the color code of the image marked in red square.
Step 2: Now Click on the color picker button from the MS Paint toolbar and click on the red square marked area. you will see the color comes in the color toolbar of the ms paint. See the below pic
Step 3:Now click on the Edit Colors tool of color toolbar and you will get a popup with the color detail as shown below.
Step 4: Here in this example you have Red=226, Green=205 and Blue=100. Now either you can convert this to hexadecimal equivalent code or simply use the RGB color code in your CSS as shown below
body { background-color: rgb(226,205,100); }
Hope it will be helpful to you all in your web designing or other related work. Don't forget to put your valuable feedback/ suggestions as a comment below.
Comments
Post a Comment
Thanks for your valuable feedbacks.Keep visiting the blog...