If you mean changing the text then follow the instructions here:
http://www.prasannasp.net/how-to-change-translate-a-string-in-graphene-theme/
« = «
function graphene_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Older posts «' => 'Next Page «',
);
if ( ! empty( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );