Elements. Build native projects for any modern development platform, using the language(s) of your choice. Oxygene (Object Pascal), C#, Swift, Java, Go. | RemObjects Software

ActionBar

Language: Iodine, Platform: Cooper, Category: Android
https://github.com/remobjects/ElementsSamples/tree/master/Iodine/Cooper/Android/ActionBar

res\values\themes.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <!-- the theme applied to the application or activity -->
  <style name="CustomActionBarTheme"
         parent="@android:style/Theme.Holo.Light.DarkActionBar">
    <item name="android:actionBarStyle">@style/MyActionBar</item>
    <item name="android:actionBarTabTextStyle">@style/MyActionBarTabText</item>
    <item name="android:actionMenuTextColor">#000000</item>
  </style>

  <!-- ActionBar styles -->

  <style name="MyActionBar"
          parent="@android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
    <item name="android:background">#f3832c</item>
  </style>

  <style name="MyActionBar"
          parent="@android:style/Widget.Holo.ActionBar">
    <item name="android:titleTextStyle">@style/MyActionBarTitleText</item>
  </style>

  <!-- ActionBar title text -->
  <style name="MyActionBarTitleText"
         parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
    <item name="android:textColor">#00ff00</item>
  </style>

  <!-- ActionBar tabs text styles -->
  <style name="MyActionBarTabText"
         parent="@android:style/Widget.Holo.ActionBar.TabText">
    <item name="android:textColor">#ff00ff</item>
  </style>
</resources>