I'm working on a module to implement a d20 character sheet and I'd like to pretty up the input form. For some reason, I can't seem to figure out how to apply a theme to the form. The base name of my module is "characters." Here's what I think is the relevant code
<?php
function characters_form(&$node) {
... // snip
// str
$form['attributes']['STR']['permstr'] = array(
'#type' => 'textfield',
//'#title' => t('STR'),
'#required' => TRUE,
'#default_value' => $node->str,
'#size' => 3
);
$form['attributes']['STR']['tempstr'] = array(
'#type' => 'textfield',
//'#title' => t('Temp STR'),
'#required' => FALSE,
'#default_value' => $node->tempstr,
'#size' => 3
);
// dex
$form['attributes']['DEX']['permdex'] = array(
'#type' => 'textfield',
//'#title' => t('DEX'),
'#required' => TRUE,
'#default_value' => $node->dex,
'#size' => 3
);
$form['attributes']['DEX']['tempdex'] = array(
'#type' => 'textfield',
//'#title' => t('Temp DEX'),
'#required' => FALSE,
'#default_value' => $node->tempdex,
'#size' => 3
);
// con
$form['attributes']['CON']['permcon'] = array(
'#type' => 'textfield',
//'#title' => t('CON'),
'#required' => TRUE,