abidlabs HF Staff commited on
Commit
0157e15
·
verified ·
1 Parent(s): d375735

Fix dark mode: dark background variant for the paper grid

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -130,6 +130,12 @@ CSS = """
130
  linear-gradient(90deg, rgba(31,41,55,.045) 1px, transparent 1px);
131
  background-size: 26px 26px;
132
  }
 
 
 
 
 
 
133
  #hero h1 { font-family: ui-serif, "Iowan Old Style", Georgia, serif; }
134
  """
135
 
 
130
  linear-gradient(90deg, rgba(31,41,55,.045) 1px, transparent 1px);
131
  background-size: 26px 26px;
132
  }
133
+ .dark .gradio-container {
134
+ background-color: #17181c !important;
135
+ background-image:
136
+ linear-gradient(rgba(253,252,249,.04) 1px, transparent 1px),
137
+ linear-gradient(90deg, rgba(253,252,249,.04) 1px, transparent 1px);
138
+ }
139
  #hero h1 { font-family: ui-serif, "Iowan Old Style", Georgia, serif; }
140
  """
141