blob: 349b4dd51334ba1b13b3b148b2f606624b9d8675 [file] [log] [blame]
// 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.
#include "ash/drag_drop/drag_drop_util.h"
#include "ash/style/ash_color_id.h"
#include "ui/gfx/shadow_util.h"
namespace ash::drag_drop {
namespace {
constexpr int kShadowElevation = 2;
} // namespace
const ui::ColorId kDragImageBackgroundColor = kColorAshShieldAndBaseOpaque;
const gfx::ShadowDetails& GetDragImageShadowDetails(
const std::optional<size_t>& corner_radius) {
return gfx::ShadowDetails::Get(kShadowElevation, corner_radius.value_or(0));
}
} // namespace ash::drag_drop