Colour Question

So I’ve created two fields within studio on Contacts

Safety Alert:
Safety Notes:

What i’m wanting to do is have the Safety Alert & Safety Notes styled in a different font and colour (i.e Red)

Is this achievable?

@dhuntress
You can:

  1. create custom css file, for example: custom/themes/SuiteP/css/Dawn/style.css .
  2. write custom code for edit and detail view, for example: custom/modules/<module_name>/metadata/editviewdefs.php .
...
        'panels' => array (
            'default' => array (
...
                1 => array (
                    0 => array (
                        'name' => 'safety_alert',  // correct the name of the 'Safety Alert' field
                        'customCode' => '<span style="color:red">@@FIELD@@</span>'
                    ),
                    1 => array (
                        'name' => 'safety_notes',  // correct the name of the 'Safety Notes' field
                        'customCode' => '<span style="color:red">@@FIELD@@</span>'
                    ),
...

I’m sure you can find several other options.