To set a background color, you would use the background-color property, not image.
background-color: rgba (20, 20, 20, 1.0);
For a background image, you would have the url to the file. If you place the image referenced near the gtk.css, you do not need the full path. If you place the image in the same directory as the gtk.css, for example:
background-image: url("image-file.png");
If the image is placed two folders away from the gtk.css, for example in /theme/assets:
background-image: url("theme/assets/image-file.png");






