Lines Matching refs:theme
707 my $theme = shift;
712 &init_solarized if ( index( "solarized", $theme ) eq 0 );
713 &init_rezza if ( index( "rezza", $theme ) eq 0 );
715 &init_1 if ( $theme eq 1 );
716 &init_2 if ( $theme eq 2 );
717 &init_3 if ( $theme eq 3 );
718 &init_4 if ( $theme eq 4 );
719 &init_5 if ( $theme eq 5 );
720 &init_6 if ( $theme eq 6 );
721 &init_7 if ( $theme eq 7 );
722 &init_8 if ( $theme eq 8 );
723 &init_9 if ( $theme eq 9 );
724 &init_10 if ( $theme eq 10 );
725 &init_11 if ( $theme eq 11 );
726 &init_12 if ( $theme eq 12 );
727 &init_13 if ( $theme eq 13 );
728 &init_14 if ( $theme eq 14 );
729 &init_15 if ( $theme eq 15 );
730 &init_16 if ( $theme eq 16 );
731 &init_17 if ( $theme eq 17 );
732 &init_18 if ( $theme eq 18 );
733 &init_19 if ( $theme eq 19 );
734 &init_20 if ( $theme eq 20 );
735 &init_21 if ( $theme eq 21 );
736 &init_22 if ( $theme eq 22 );
737 &init_23 if ( $theme eq 23 );
738 &init_24 if ( $theme eq 24 );
739 &init_25 if ( $theme eq 25 );
938 my $theme = shift;
944 printf DUMP "Palette after \"%s\"\n", $theme;
961 my $theme = shift;
962 if ( substr( $theme, 0, 1 ) eq "+" ) {
965 if ( $theme =~ /^\+[0-9]$/ ) {
966 my $slot = substr( $theme, 1 );
975 elsif ( substr( $theme, 0, 1 ) eq "-" ) {
978 if ( $theme =~ /^-[0-9]$/ ) {
979 my $slot = substr( $theme, 1 );
988 elsif ( $theme eq "?" ) {
995 &init_theme($theme);
999 &dump_colors($theme) if ($opt_d);