src/syntax.css (16 lines of code) (raw):
/*
* Copyright (c) 2018-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
/* Keywords */
.hs-FunctionToken,
.hs-NamespaceToken {
color: #c678dd;
}
/* Types */
.hs-SimpleTypeSpecifier .hs-StringToken {
color: #e5c07b;
}
.hs-ClassDeclaration .hs-NameToken {
color: #e5c07b;
}
/* Functions */
.hs-FunctionDeclaration .hs-NameToken {
color: #61afef;
}
/* Variables */
.hs-VariableToken {
color: #e06c75;
}