Create a new style and extend Theme.Dialog then override what you want to change. Example:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="MyActivityDialogTheme" parent="@android:style/Theme.Dialog">
<item name="android:windowTitleStyle">@style/MyTitleStyle</item>
</style>
<style name="MyTitleStyle" parent="@android:style/DialogWindowTitle">
<item name="android:textAppearance">@style/MyTextApperance</item>
</style>
<style name="MyTextApperance" parent="@android:style/TextAppearance.DialogWindowTitle">
<item name="android:textColor">#ffff0000</item>
<item name="android:textSize">36sp</item>
</style>
</resources>
Anything you don't specify will use the Dialog defaults. I've only specified the colour and font size of the textApperance in this example.
Now just use MyActivityDialogTheme (or whatever you call your style) as the theme for your activity instead of Theme.Dialog.