Order management: custom colors for order statuses You can change the colors of order statuses in order management and give personalized colors to custom order statuses. 1. Install a browser add-on that allows you to inject CSS code. In Firefox you can use "Simple CSS Inserter". 2. Use the CSS below. s_custom0 to s_custom9 are the custom order statuses. The last value in rgba() is the transparency. 3. Include the CSS on the following page (if you log in at easywebshop.com): https://easywebshop.com/software/order The CSS code: .s_orderreceived, .s_waitingforpayment { } /* #fff */ .s_paymentreceived { background-color: rgba(102, 255, 102, 1); } /* #c9f */ .s_processing { background-color: rgba(255, 238, 102, 1); } /* #fe6 */ .s_productssent { background-color: rgba(255, 153, 0, 1); } /* #f90 */ .s_complete { background-color: rgba(153, 204, 255, 1); } /* #9cf */ .s_cancelled { background-color: rgba(255, 99, 71, 0.9); } /* #ff6347 */ .s_custom0 { background-color: rgba(186, 218, 85, 0.9); } /* #bada55 */ /* ... */ .s_custom9 { } Changing the colors: The W3Schools website has a "color picker" for easy color selection: https://www.w3schools.com/colors/colors_picker.asp Learn more about HTML/CSS color coding: https://www.w3schools.com/colors Color Designer - easily generate color palettes https://colordesigner.io Color Combos - create color combinations https://www.colorcombos.com