Options Framework not saving options correctly

The options are saved as an array under a single key, what you see in the db is serialized data. WordPress takes care of unserializing the data when the option is loaded, so you can reference each individual option the same way you’d reference an element in any php array:

$my_options = get_option('RWWA');
echo $my_options['colour'];