Home | History | Annotate | Download | only in values
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2013 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 
     17 <resources xmlns:android="http://schemas.android.com/apk/res/android">
     18 
     19     <!--
     20         Base application theme, dependent on API level. This theme is replaced
     21         by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
     22     -->
     23     <style name="AppBaseTheme" parent="android:Theme.Light">
     24         <!--
     25             Theme customizations available in newer API levels can go in
     26             res/values-vXX/styles.xml, while customizations related to
     27             backward-compatibility can go here.
     28         -->
     29     </style>
     30 
     31     <!-- Application theme. -->
     32     <style name="AppTheme" parent="AppBaseTheme">
     33         <!-- All customizations that are NOT specific to a particular API-level can go here. -->
     34     </style>
     35 
     36     <style name="time_label">
     37         <item name="android:textSize">@dimen/time_label_size</item>
     38         <item name="android:textColor">@color/numbers_text_color</item>
     39     </style>
     40 
     41     <style name="ampm_label">
     42         <item name="android:textSize">@dimen/ampm_label_size</item>
     43         <item name="android:textAllCaps">true</item>
     44         <item name="android:textColor">@color/ampm_text_color</item>
     45         <item name="android:textStyle">bold</item>
     46     </style>
     47 
     48     <style name="day_of_week_label_condensed" />
     49 </resources>