android colorPrimary、colorPrimaryDark和colorAccent都代表什么意思

创建新的项目,androidstudio都会默认为我们新建一个主题的style,里面包含这三种颜色属性,大抵如此:

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

直接上图解释:

android colorPrimary、colorPrimaryDark和colorAccent都代表什么意思