/*
 * Copyright (c) 2002-2017 "Neo Technology,"
 * Network Engine for Objects in Lund AB [http://neotechnology.com]
 *
 * This file is part of Neo4j.
 *
 * Neo4j is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

@import "_solarized.css";

/***********
 * Token
 */
.cm-s-cypher .cm-comment {
    color: var(--color-base1);
}

.cm-s-cypher.cm-s-cypher-dark .cm-comment {
    color: var(--color-base01);
}

.cm-s-cypher .cm-string {
    color: var(--color-yellow);
}

.cm-s-cypher .cm-number {
    color: var(--color-cyan);
}

.cm-s-cypher .cm-operator {
}

.cm-s-cypher .cm-keyword {
    color: var(--color-green);
}

/***********
 * Parser
 */
.cm-s-cypher .cm-p-label {
    color: var(--color-orange);
}

.cm-s-cypher .cm-p-relationshipType {
    color: var(--color-orange);
}

.cm-s-cypher .cm-p-variable {
    color: var(--color-blue);
}

.cm-s-cypher .cm-p-procedure {
    color: var(--color-violet);
}

.cm-s-cypher .cm-p-function {
    color: var(--color-violet);
}

.cm-s-cypher .cm-p-parameter {
    color: var(--color-red);
}

.cm-s-cypher .cm-p-property {
    color: var(--color-base01);
}

.cm-s-cypher.cm-s-cypher-dark .cm-p-property {
    color: var(--color-base1);
}

.cm-s-cypher .cm-p-consoleCommand {
    color: var(--color-magenta);
}

.cm-s-cypher .cm-p-procedureOutput {
    color: var(--color-blue);
}
