Skip to content
Snippets Groups Projects
Commit 0d388b55 authored by Tom Robinson's avatar Tom Robinson
Browse files

Fix lint

parent 92ac1287
No related branches found
No related tags found
No related merge requests found
import React from "react";
import Card from "metabase/components/Card";
import { t } from "c-3po";
export const component = Card;
export const description = `
......
......@@ -43,7 +43,6 @@ export const harmony = [];
// DEPRECATED: we should remove these and use `colors` directly
// compute satured/desaturated variants using "color" lib if absolutely required
export const normal = {};
export const brand = {};
export const saturated = {};
export const desaturated = {};
......@@ -88,8 +87,6 @@ function syncHarmony() {
// syncs deprecated color families for legacy code
function syncDeprecatedColorFamilies() {
// brand
brand.normal = brand.saturated = brand.desaturated = colors["brand"];
// normal + saturated + desaturated
normal.blue = saturated.blue = desaturated.blue = colors["brand"];
normal.green = saturated.green = desaturated.green = colors["accent1"];
......
......@@ -5,7 +5,7 @@ import { t } from "c-3po";
import { Box, Flex } from "grid-styled";
import styled from "styled-components";
import { space, width } from "styled-system";
import colors, { alpha } from "metabase/lib/colors";
import colors from "metabase/lib/colors";
import { connect } from "react-redux";
import { push } from "react-router-redux";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment