change color of columns google chart js - html

So i wonder how to change the color of the lines in the background of a line graph. I couldnt find anything in the documentation of google.
So how do I change the color of the white lines in the background of my google chart?
enter image description here

Related

Change highlight colors in omnibox in google chrome theme manifest.json

Can I change the highlight color in the omnibox? If so, can I change the color of the text that is highlighted? What element(s) should I be using? The default colors are a dark blue for the highlight color and white for the highlighted text color.
(I am making a google chrome theme.)
Themes can customize some of the colors of the omnibox, specifically text and background, not the highlight.
P.S. Extensions can't do it.

CSS Font Images

another quick question. I've seen this multiple times now in different code sets. Someone calls for an image from the css
HTML:
<i class="icon-map-marker2"></i>
CSS
.icon-map-marker2:before {
content: "\e6f9";
}
Which gives the output of this:
As you can see the picture isn't transparent background. I was looking to edit it to give it transparency, but can't seem to find out how. I've also tried things with the CSS like:
style="background-color:rgba(0, 0, 0, 0.5);"
// Changing the last value's number though and stuff like that
opacity: 1;
// etc
I want to keep the gold color, but have a transparent background! Thanks for the assistance!
An example is on Canvas' live preview - Hover Home -> One Page: http://preview.themeforest.net/item/canvas-the-multipurpose-html5-template/full_screen_preview/9228123?_ga=2.252490057.1116575863.1496646725-686174233.1494200798
Try adding css for a tag for background color:
a{
background:transparent;
}
Background coming form .fbox-icon this div.. just add css for that
.feature-box.fbox-bg.fbox-center .fbox-icon {
background-color:transparent;
}
An option... Download the photo and save it as a png with a transparent BG.
Personally I use Photoshop though there is a free software called Gimp - Free & Open Source Image Editor that will allow you to format transparent photos and then save them as .png.
Typical method involved saving an image locally, editing and
exporting as transparent png.
Right click the hosted photo in your browser and then choose Open Image In New Tab
Right click on the image within the newly opened tab and select Save link as, then choose your destination folder.
Open your image editor software, see my link below for GIMP if needed.
Typically, if you have a good contrast between the BG and the
image or the background is one solid color, as is in your case. You can pull the image out of the background by using the Magic Wand tool.
You can also use the lasso tool to make the selection, where you sort of draw around the selection. However, this method is a bit more tedious and time consuming.
Once you have your image selected apart from the background you wish to remove, simply hit the delete button to delete the selected pixels. *MAKE SURE YOU HAVE THE BACKGROUND SELECTED AND NOT THE IMAGE WHEN YOU DELETE!
Only need feather if you have soft edges, if not skip feathering.
Feather: Feather the selection. Under Select->Modify->Feather. Enter a low number like .5 though you may need to experiment to find the right amount
to feather your softer edges, when needed. Then select the inversion and delete the selected inversion to apply the feather and soften your edge.
Now export your image as a .png file and host it so you can link to the new transparent image.
In PhotoShop, you would choose File->Save For Web Choose PNG-24 and select Transparent
Note the size, preview if needed, then save.
Now re-host within your websites image file structure or online at imgur or other img site and link to the newly posted
transparent pic.

Color customization with Google forms.

Google forms is automatically altering color when I insert a custom photo banner (which does not match our brand). How and where can I enter in a specific color code (if possible)? Is there a specific format that should be used? (HTML, RGB, CMYK?)
Also, the initial box IN the email seems to be defaulting to a red/burgundy color scheme. Is this normal, and is it also able to be changed?
Thanks in advance!
Sorry, this is not possible. If you change the image banner it will change the colour too.

How to choose a color on a palette to change part of an image?

I don't even know where to begin or what codes will be needed.
I'm trying to build a website that allows the user to change a certain part of an image's color. Just like a coloring book page online, where someone can choose a color from the palette and it will allow them to click on that part of the image to change it to that color. Once they are done they can save the image to their computer.
Any help in the right direction would be incredible!
You can try to make a transparent div over a div containing the image which is in absolute position of the div containing the image.
Then you can check some javascript plugin to get a color picker plugin.
With Javascript and for example jQuery, you can add some events on click on the color picker and then on click of the div which is hover the image to apply the picked color.
I hope this is clear for you, otherwise I can make a JSfiddle

How to change inspections column background color in PhpStorm?

Code inspections are highlighted on the right-side of the editor as red/yellow lines. I want to change the background color of the entire column (not the color of individual inspections).
In previous versions of PhpStorm (with the Darcula theme), the column was a grey color. In PhpStorm 10, it is now transparent. Is there a way to change the background color?
Not really. That color is part of the IDE Theme which is not user configurable.
But you can show some background there:
Help | Find Action...
Look for Registry there (exact match)
Once got inside Registry window look for editor.transparent.scrollbar and uncheck it (user modified values will be displayed in bold .. so make sure you have changed it, not just "Click and that's enough")