• Resolved DJF3

    (@djf3)


    Team,
    First of all: great plugin. It’s always great to have an easy way to keep track of “what needs to be done”. One thing I noticed about the colors:

    They can be quite “harsh”. For me the blue is too blue, red is too red, etc.

    So besides an enhancement request “make note background color configurable, not just selectable” I figured: why not throw in some CSS? (yes, I recently learned how to do this 🙂 )

    STEPS:

    1. Edit your (child) theme’s “functions.php”
    2. Add the code below
    3. Match the “note_681” id’s with the ID’s of your notes (check with right-click, inspect).
    // DJ____CHANGE WP Dashboard Notes background COLOR________________________ 
    add_action('admin_head', function() {
    echo '<style>
    /* -- NOTE "TODO p1" */
    #note_681 {
    background-color: #c5f9b4 !important;
    }
    /* -- NOTE "TODO p2" */
    #note_682 {
    background-color: #c8f7ff !important;
    }
    /* -- NOTE "ROADMAP" */
    #note_685 {
    background-color: #f9d6b9 !important;
    }
    /* -- NOTE "DONE" */
    #note_683 {
    background-color: #d1d3d3 !important;
    }
    </style>';
    });

    Cheers!

    DJ

    • This topic was modified 1 month, 1 week ago by DJF3.
Viewing 1 replies (of 1 total)
  • Plugin Author Jeroen Sormani

    (@sormano)

    Hi DJ,

    Thank you for the feedback, I’ll take this into consideration.

    For now, it would also be possible through some further (PHP) customization to customize the default colors. There might be a script somewhere on the forums here, but I’m not sure. It should be similar to the ‘Add a custom color’ script in the FAQ on the homepage of the plugin here.

    Cheers!
    Jeroen

Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.