<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright 2023 The Chromium Authors
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto">
  <item>
    <shape android:shape="rectangle">
      <solid android:color="?attr/colorSurface"/>
      <corners android:radius="@dimen/improved_bookmark_row_outer_corner_radius" />
    </shape>
  </item>
  <item>
    <selector>
      <item android:state_selected="true">
        <shape android:shape="rectangle">
          <solid android:color="@color/color_on_surface_with_alpha_8" />
          <corners
            android:radius="@dimen/improved_bookmark_row_outer_corner_radius" />
        </shape>
      </item>
      <item
          android:drawable="@drawable/list_item_rounded_background_selector" />
    </selector>
  </item>
</layer-list>