/*
* Copyright 2017 Palantir Technologies, Inc. All rights reserved.
*
* Licensed under the terms of the LICENSE file distributed with this project.
*/import { Classes } from"../";
exportfunctionisDarkTheme(element) {
return element.closest("." + Classes.DARK) != null;
}