UNPKG
@discostudioteam/react-code-blocks
Version:
latest (0.1.1-0)
0.1.1-0
0.1.0-0
0.0.2-0
0.0.1-0
Modified rajinwonderland's modification of Atlaskit's Code Block!
@discostudioteam/react-code-blocks
/
src
/
components
/
Snippet
/
styles.ts
11 lines
(9 loc)
•
256 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
CodeBlockTheme
}
from
'../../types'
;
export
const
getStyles
= (
theme: CodeBlockTheme
) => {
const
styles = {
color
: theme.
textColor
,
border
: theme.
lineNumberBgColor
,
bgColor
: theme.
backgroundColor
, };
return
styles; };