MX Linux - change desktop font color

Desktop Environment / DE ---> Xfce - 4.14

     
    NB!
    It depends which version of Xfce you have. This applies to Xfce version 4.14 or above. Xfce 4.14  is gtk-3.0 - based.
    
    1. Open your "home" folder and press Ctrl+H (show hidden files). No ROOT required.

    2. - Open ".config" folder

       - Open "gtk-3.0" folder

       - Open file "gtk.css".

       - If there is no such file, create one "gtk.css" file.

       - or in short ---> /home/username/.config/gtk-3.0/gtk.css
   
   Copy and paste in "gtk.css" file this simple code ---> choose code_1 or code_2:

        Code_1:

     /* code_1, without shadow */
    XfdesktopIconView.label {
        color: black;
        text-shadow: none;
    }

    
    ----------------------
        
        Code_2:

    /* code_1, with shadow */
    XfdesktopIconView.label {
    color: #000000;
    text-shadow: 3px 3px #00ff00;
}

    
    ----------------------
    #000000 = black             
    #00ff00 = green


    ..... Help for creating a css file: ....
    
    1. Create a plain text file with a .txt extension
    2. Change the .txt extension to .css
    
    That's all.

    Close all windows and restart Linux. 

    I wish you good luck!